Strategies to Improve Test Coverage for Senior Software Engineers – Machinet's Blog (2024)

  1. Understanding the Importance of Test Coverage in Software Development
  2. Effective Methods to Achieve More Test Coverage in Less Time
  3. Steps to Improve Better Test Coverage for Senior Software Engineers
  4. Implementing Efficient Test Coverage Techniques: A Tutorial
  5. How to Address Changing Requirements with Flexible Testing Frameworks
  6. Strategies for Balancing Workload and Deadlines to Optimize Testing Efforts
  7. The Role of Automated Unit Testing in Enhancing Test Coverage
  8. Measuring the Effectiveness of Unit Tests: Key Metrics for Senior Software Engineers

The importance of test coverage in software development cannot be overstated. Test coverage measures the extent to which a program's source code is scrutinized through a test suite, providing developers with valuable insights into the tested and untested portions of the code. By identifying areas lacking in testing, developers can improve overall software quality and reduce unnoticed software glitches. However, achieving optimal test coverage and effectively managing testing efforts can be challenging for senior software engineers. This article explores various strategies for enhancing test coverage, balancing workloads and deadlines, implementing efficient testing frameworks, and measuring the effectiveness of unit tests. By following these strategies, senior software engineers can optimize their testing efforts and deliver high-quality software applications

Test coverage, a crucial measure in software engineering, quantifies the extent of scrutiny a program's source code undergoes through a test suite. It provides a transparent view of the tested and untested portions of the code, thus enabling developers to identify areas lacking in testing and improve overall software quality. Test coverage is linked to the reduction of unnoticed software glitches, leading to more reliable and robust software applications.

Improve your test coverage and ensure reliable software applications with Machinet's automated unit testing capabilities.

In the world of unit testing, test coverage and code coverage share a complex relationship. It's often recommended that the initial focus should be on creating and executing tests, especially for those new to testing with a significant amount of code but no tests. Code coverage becomes a concern at a later stage, once the process of writing and executing tests become familiar.

Experienced programmers understand that the required testing level depends on various factors. The process of determining code coverage can be likened to cooking rice, where the quantity needed depends on several variables. This analogy serves to underline that the amount of testing required is contingent on a number of factors, which the programmer is most familiar with.

However, the concept of code coverage is often oversimplified, especially by programmers who prefer straightforward solutions. They are often advised to aim for a coverage of "eighty percent and no less", but this is a simplistic answer. The reality is much more complex, and the focus should be on understanding the context and individual factors when determining code coverage in unit testing.

It's essential to realize that achieving a 100% test coverage does not necessarily guarantee that all edge cases are tested. The quality of the tests is a separate aspect that needs to be considered. Studies have shown that bugs often occur in the remaining 40% of the code that is not covered by tests, debunking the common misconception that a coverage of 60% is sufficient.

Test coverage should focus primarily on the public API of a project, rather than on testing every single function. This approach ensures reachability and testability. Dead code, or code that is present in the project but not used, can pose challenges when writing tests, leading to unnecessary test maintenance and slowing progress. Test coverage provides additional guarantees of correctness and helps identify sections of the code that are not reachable from the public API.

Achieving 100% code coverage is not always possible due to factors such as untestable main functions and interactions with external services. Coverage tools are not always accurate, and discrepancies may arise between reported coverage and actual code execution. A coverage percentage starting from 97% is a reasonable goal, but higher coverage does not necessarily equate to well-tested code. Testing the public API and achieving 100% coverage through such testing can help identify bugs in less frequently accessed parts of the code. Lastly, any uncovered code should be carefully scrutinized to determine if it is due to coverage calculation issues, untestable parts of the code, or potential design mistakes.

To improve test coverage, best practices such as writing comprehensive test cases that cover different scenarios and edge cases, using code coverage tools, and continuously reviewing and updating test cases should be followed. Additionally, test-driven development (TDD) can help improve test coverage by ensuring that tests are written before the actual code, thereby driving the development process based on test requirements.

Tools like JaCoCo, Cobertura, and Emma can measure test coverage and provide detailed reports showing which parts of your code are covered by your tests and which parts are not. Techniques like statement coverage, branch coverage, condition coverage, path coverage, and mutation testing can supplement these tools to provide a comprehensive picture of test coverage.

High test coverage offers several benefits, including early identification of bugs, improved software quality, confidence in the software's functionality, and reduced time and effort for manual testing. Furthermore, it promotes code maintainability and readability. By understanding and implementing these principles, engineers can ensure the delivery of high-quality, robust software applications

Enhancing the scope of test coverage while optimizing time management demands a robust strategy. A prime approach to consider involves prioritizing testing procedures based on the risk and intricacy of the code. Areas of high risk or blocks of complex code warrant immediate testing. This involves analyzing the codebase to identify parts that are more likely to have bugs or are more challenging to test. This could include modules with complex logic, critical functionality, or areas that have a high impact on the overall system. Based on these identified high-risk and high-complexity areas, define the desired level of test coverage for each of them. This could include different types of testing such as unit testing, integration testing, or system testing.

Furthermore, employing automated testing tools can significantly boost coverage and save considerable time for developers. An example of such a tool is Machinet, capable of generating comprehensive unit tests. Machinet streamlines the testing process by automating repetitive tasks, reducing the time and effort required for manual testing, and enhancing test coverage, allowing for comprehensive testing of various scenarios and edge cases. This can help identify bugs and issues early in the development process, leading to faster bug fixes and overall improved software quality.

In the same vein, platforms like Applause offer all-encompassing solutions for digital quality and testing. Known as pioneers in crowdtesting, Applause boasts the largest community of digital experts globally. Their diverse range of testing solutions ensures all facets of digital quality are covered. They work in tandem with partners to ensure clients can confidently release high-quality products. Applause’s solutions are versatile, catering to engineering teams, product teams, and QA teams across various industries like retail, media entertainment, financial services, travel hospitality, and healthcare.

Automated testing tools like Rainforest QA focus on visual layer testing, requiring no advanced coding skills. This tool offers several advantages, such as automation less prone to code changes, parallel test execution, video playback for analyzing test failures, and the ability to test actions outside the browser. It integrates seamlessly with CI/CD pipelines, providing a library of auto-generated test data and allowing integration into multiple development environments.

Another method to enhance test coverage is code review. This process allows for the early detection of potential issues in the development cycle, thereby reducing the time spent on debugging and retesting. Code review strategies include reviewing the test cases to ensure they cover all possible scenarios and edge cases, having a peer review to identify potential gaps in test coverage, establishing code standards and guidelines, assessing the testability of the code during the review process, and utilizing automated code review tools to identify potential issues or gaps in test coverage.

In essence, achieving more test coverage in less time is possible with a strategic approach, prioritizing testing based on risk and complexity, utilizing automated testing tools, and conducting early code reviews. Sharing findings with the testing community is also encouraged to provide value beyond one's own organization

Enhancing test coverage is not a one-time task, but a continuous process that unfolds in several stages. The first step is to utilize code coverage tools to identify parts of the code that lack testing. These tools analyze your code during runtime and provide insights into which parts of your code have been executed and which parts have not. By using these tools, you can prioritize your testing efforts and ensure that all critical parts of your code are adequately tested.

Once these untested areas have been identified, the next step is to create tests that address these sections, considering edge cases and potential scenarios that could result in errors. However, it's important to note that while increasing test coverage is a worthy goal, it should not be pursued to the exclusion of other important factors. For instance, simply aiming for 100% coverage can sometimes provide a false sense of security, especially if the tests are not designed effectively.

As your codebase evolves, it's essential to conduct periodic reviews and updates of your tests. This ensures they remain relevant and effective. Automated testing tools can significantly streamline this process. They can automate the execution of test cases, allowing for faster and more efficient testing. Additionally, automated testing tools can generate comprehensive test reports, making it easier to track and analyze test results.

The final step in this process is to keep a close eye on test coverage metrics over time. This tracking allows you to measure your progress and identify areas that may require further improvement. One common approach is to use a code coverage tool, which instruments your code and tracks which parts of your code are executed during your tests. This allows you to measure the percentage of code that is covered by your tests.

Engineering time is a finite resource. Therefore, it's imperative to prioritize testing efforts on the most critical and relevant parts of the codebase. Not all code carries the same weight. Modules dealing with sensitive data or crucial functionality should be accorded more attention in terms of testing.

Google's best practices suggest that a code coverage of 60% is considered acceptable, 75% is commendable, and 90% is exemplary. It's been observed that most repositories using codecov find that their code coverage values tend to decline when they exceed 80% coverage. Therefore, instead of aiming for 100% coverage, it would be more beneficial to focus on writing high-quality tests that cover the most critical parts of the codebase.

Cultivating a robust testing culture and writing good tests can lead to a reduction in the number of bugs deployed to production. Therefore, while it's important to aim for high test coverage, the quality of tests should not be compromised. A recommended coverage value for a well-tested codebase is around 80%. This strikes a balance between ensuring thorough testing and avoiding the pitfalls of chasing after perfect coverage

Efficient test coverage in software development involves a blend of techniques that not only test the code but also ensure its robustness and reliability. The starting point is to establish a precise replica of the production environment for testing. This involves determining the base URL for the testing environment, identifying the chunk ID and domain associated with it, and specifying the type of URL to be used.

As part of the testing process, it's crucial to identify areas of code that are yet to be tested. This is where a code coverage tool comes into play. It serves as a fundamental metric in gauging the extent of testing your source code has undergone. Tools like JaCoCo, Cobertura, and OpenClover are commonly used for this purpose, generating metrics on function coverage, statement coverage, branch coverage, condition coverage, and line coverage. They provide insights into how the code was used during the execution of a test suite, allowing you to identify areas that need additional testing.

While the percentage of coverage can vary depending on the project, aiming for approximately 80% coverage is a good practice. Techniques such as Equivalence Partitioning, Boundary Value Analysis, Decision Table Testing, Pairwise Testing, and Code Coverage Analysis can be used to enhance code coverage. These techniques assist in reducing redundant test cases, spotting errors at the edges of the input domain, managing multiple conditions and rules, covering all possible combinations of input parameters, and identifying untested areas of the code, respectively.

The role of unit testing in enhancing code coverage shouldn't be underestimated. It verifies that individual methods function as expected and can help us identify areas of the code that need to be tested. It's also important to focus on edge cases and potential error conditions during testing. Automated testing tools, such as Machinet, can be used to generate and run tests, improving the overall robustness and reliability of the software.

Integrating code coverage into the continuous integration (CI) workflow ensures that coverage goals are met. However, remember that a high coverage doesn't necessarily mean good tests. It's equally important to have a robust test suite that covers both expected and unexpected behaviors.

As your code evolves, tests should be regularly reviewed and updated. You can do this by reviewing the test coverage to check if all critical parts of the code are covered by tests, updating tests for code changes, refactoring tests, incorporating edge cases, running tests regularly, and analyzing test results. Test coverage metrics should be monitored to track progress. Tools like code coverage analysis tools and continuous integration platforms can be used for this purpose.

The importance of test coverage is exemplified by the case of AnyCable Go, an open-source project. The initial coverage of AnyCable Go was only 50%, but it was increased to 76% without writing a single Go test. The primary quality metric for AnyCable Go is the rate of bug reports, which was relatively low.

In conclusion, achieving efficient test coverage is not just about reaching a high percentage of coverage. It's about writing effective tests that truly ensure the quality of your code. As Vladimir Dementyev, the author of the AnyCable project, aptly put it, "Coverage is like statistics, if you torture the data long enough it will confess to anything." This emphasizes that coverage should be used as a tool, rather than a source of truth or confidence

In the dynamic world of software development, it's crucial to have adaptable testing frameworks that can effortlessly adjust and expand tests as per evolving requirements. One such tool that proves to be invaluable in this regard is Bitbar, a cloud-based platform for web and mobile app testing. Its framework-agnostic nature allows developers and testers to employ their preferred frameworks without the need to switch or rewrite existing test scripts. This flexibility facilitates easy experimentation with new tools and frameworks, and simplifies the setup and maintenance of testing environments.

Bitbar's framework-agnostic platform boasts a plethora of features, including test automation, visual testing, and UI functional testing. It enables developers and testers to easily modify tests in response to changing requirements. A distinct advantage of using Bitbar is its capacity to support both beta and official versions of operating systems concurrently. This proves particularly beneficial when dealing with beta versions of operating systems, enabling companies to release stable apps swiftly when new OS versions are introduced.

The adoption of a test-driven development approach, where tests are written before the code, is another effective strategy for handling changing requirements. This encourages the development of testable code and ensures that the tests are always updated with the latest requirements. It also allows for straightforward test execution workflows and permits customization of testing setups according to specific requirements.

As an experienced software engineer aptly put it, "Your teams most likely work with a specific framework already. You need an app testing platform that goes beyond support for common and popular frameworks. A framework-agnostic tool enables you to unite all your test teams under one shared tool. You need a flexible testing service in order to evaluate new opportunities, tools, and workflows."

Furthermore, it's worth noting that while automated testing tools, like Machinet, can generate tests that are easy to update as requirements change, Bitbar offers a flexible and adaptable solution for mobile test automation. This allows developers and testers to use any native mobile test automation framework, making it a robust solution for the ever-changing landscape of software development requirements.

To leverage Machinet for flexible testing in software development, you can refer to the blog posts on the Machinet blog. These blog posts offer insights, tips, and techniques related to unit testing in software development. Following the guidance and best practices mentioned in these posts can enhance the flexibility and effectiveness of your testing approach in software development.

There are various automated testing tools available that can assist in adapting to changing requirements. These tools offer features that allow for efficient and effective testing of software applications. They can help automate the testing process, reducing the time and effort required for manual testing. Some popular automated testing tools include Selenium, Appium, JUnit, TestNG, and Cucumber. These tools offer a range of capabilities such as test script creation, test execution, reporting, and integration with other development and testing tools. Utilizing these tools can ensure that software applications are thoroughly tested and can easily adapt to changing requirements.

Machinet.net is another useful resource for test-driven development. By using Machinet.net as a resource for test-driven development, developers can access valuable information and insights on topics like unit testing basics and best practices for Java unit testing. These resources can help developers understand the concepts and techniques involved in test-driven development, enabling them to write better tests and improve the overall quality of their code.

To modify and extend tests with flexible testing frameworks, you can utilize features provided by the frameworks themselves. These frameworks often offer various ways to customize and enhance your tests according to your specific needs. One common approach is to use hooks or listeners provided by the testing framework. These hooks allow you to execute certain actions before or after test cases, such as setup and teardown operations. By utilizing these hooks, you can modify the behavior of your tests and extend them with additional functionality.

To generate tests that can be easily updated with changing requirements, you can leverage the capabilities of Machinet. Machinet provides a platform or service that can assist in automating the generation of tests for your software. By utilizing Machinet, you can create tests that are adaptable to changes in requirements.

To implement a test-driven development approach with Machinet, you can follow these steps:1. Start by writing a failing test for the desired functionality.2. Implement the necessary code to make the test pass.3. Run the test and verify that it passes.4. Refactor the code if needed.5. Repeat the process for each new functionality or code change.

By following this approach, you can ensure that your code is thoroughly tested and that any changes or additions you make are fully supported by tests. This helps in maintaining the quality and reliability of your software.

In conclusion, using Machinet can be beneficial to improve testability and adaptability in software development. Machinet is a platform that provides various features and tools to enhance the testing and adaptability aspects of software development. It offers features like unit testing basics and best practices for Java unit testing, which can help developers in writing effective and reliable tests for their software. By following these best practices, developers can improve the testability of their code and ensure that it is easily adaptable to changes in requirements or technology

Balancing workloads, meeting deadlines and optimizing testing efforts are indeed substantial challenges in software development. An effective way to alleviate these hurdles is by integrating testing as a part of the development process, rather than treating it separately. This approach facilitates early detection of potential issues, reducing the time spent on debugging and retesting. The integration of testing into the development process typically involves defining a testing strategy, creating test cases, automating tests, integrating testing into a continuous integration pipeline, and collaborating with developers to ensure code is testable.

Optimize your testing efforts by integrating testing into your development process with Machinet's comprehensive testing solutions.

Automated testing tools, such as Selenium, JUnit, TestNG, and Cucumber, can significantly enhance the efficiency of testing by automating repetitive tasks, reducing manual effort, and increasing test coverage.

Discover the power of automated testing tools like Machinet to streamline your testing process and improve test coverage.

These tools offer various functionalities that support different types of testing, including unit testing, functional testing, regression testing, and performance testing.

In terms of workload and deadlines, strategies such as prioritizing tasks based on their impact on the overall project and breaking down tasks into manageable units can be employed. Effective communication and collaboration among team members can also play a significant role in meeting objectives within time constraints.

Prioritizing testing based on code risk and complexity is another key aspect. This ensures that critical and complex parts of the code are thoroughly tested, reducing the likelihood of bugs and issues in production. Code complexity metrics, such as cyclomatic complexity, can provide insights into the complexity of different parts of the code. By analyzing these metrics, developers can identify areas that require more thorough testing.

Monitoring test coverage metrics is crucial in ensuring that testing efforts are focused where they are most needed, fostering efficiency. Tools that measure code coverage achieved by the test suite can provide insights into which parts of the code are covered by tests and which are not.

The Agile Testing Fellowship community is an excellent example of a group that thrives through mutual assistance. However, it is worth noting that some software organizations fail to understand the importance of maintaining a sustainable pace, often due to pressure from company leaders and unrealistic deadlines. This can lead to teams working long hours and compromising on quality.

Solutions such as setting limits on working hours, making overtime visible, slicing stories into small increments, and limiting work in progress can contribute to a predictable cadence. It is also vital for managers to educate stakeholders about the negative impacts of not maintaining a sustainable pace.

Applause, a leader in crowdtesting, offers a comprehensive platform for digital quality and product excellence. They stress the importance of assessing testing resource allocation and determining the value produced by investing in different types of testing. They suggest staffing projects according to risk, with high-risk and larger projects receiving more resources.

Applause recommends using techniques to reduce risk, such as unit testing, feature testing, regression testing, performance testing, crowdtesting, accessibility testing, localization, continuous integration, and more. They encourage organizations to assess their current and potential testing resource allocation by gathering metrics and comparing them to actual bugs found in recent work.

In the long run, it is advisable to analyze past projects and bugs to determine if the right testing techniques were used. This aids in understanding the potential risks and rewards of different testing techniques. In the ever-evolving world of software testing, it is crucial to emphasize the importance of collaboration and communication within the testing community

Automated unit testing is a crucial tool for expanding test coverage, offering the ability to run a higher volume of tests in a shorter time frame compared to manual testing. This method not only improves coverage but also offers increased reliability by reducing the risks associated with human error. Automated tests are versatile and can be updated and rerun in response to code modifications, ensuring that test coverage remains comprehensive despite changes to the codebase.

Machinet, a platform for generating detailed unit tests based on project specifications, simplifies the process of achieving comprehensive test coverage. To generate automated unit tests with Machinet, a developer can identify the code or functionality to be tested, create a new test file or add a test case to an existing file, and write test methods that cover different scenarios. Machinet's features can be used to generate test inputs, such as generating random data or using data-driven testing techniques. Once the tests are run using the Machinet testing platform, the results can be analyzed to identify any failures or issues in the code. Necessary changes can be made to the code to fix any failures or issues found during testing. This process can be repeated until all the desired functionality is adequately tested. Machinet's platform not only improves test coverage with automated unit testing but also enhances the overall quality and reliability of the software.

Engineers at DoorDash, such as Lev Neiman, Venkataramanan Kuppuswamy, Carlos Herrera, and James Lamine, have written blog posts expressing a keen interest in enhancing code coverage and functional testing. Their posts explore topics such as standardizing and improving microservices, enabling faster financial partnership integrations, building a platform to translate DoorDash into multiple languages, and writing maintainable gRPC endpoints using structured concurrency in Kotlin. These posts emphasize the differences between functional tests and unit tests, such as test scope, refactoring sensitivity, and self-documenting nature.

The blog at DoorDash also discusses the challenges encountered and overcome in functional testing, such as spinning real instances of the application and stubbing gRPC servers. It elaborates on strategies for test setup, including using real databases with test containers and stubbing network responses with grpcmock and WireMock. The blog also highlights the benefits of functional testing, such as reproducing and fixing bugs with confidence, providing high-level test documentation, and reducing the need for finer-grained unit tests.

The blog post at DoorDash concludes by discussing future work, which includes developing tooling and documentation to encourage the adoption of functional testing, running tests in parallel, and integrating filibuster for fault discovery and codification. It mentions other popular posts on deep links, eliminating task processing outages, leveraging functional programming in Kotlin, and securing data transfer in cloud and on-premise data centers. This demonstrates the depth and breadth of the software engineering knowledge shared on the blog, which can be a valuable resource for senior software engineers looking to enhance their test coverage strategies

Understanding the effectiveness of unit tests is a complex endeavor that requires a deep understanding of key metrics. Test coverage, a quantifiable measure of the scope of code tested, is one of these fundamental metrics. Other crucial metrics include the pass/fail rate, which provides insight into the quality of the tests, the number of defects identified, which testifies to the ability of the tests to detect issues, and the time taken to execute the tests, which can affect the speed of the development cycle.

By keeping tabs on these metrics, seasoned software engineers gain valuable insights that can guide their testing efforts. They can then leverage these insights to make necessary adjustments, improving test coverage and other metrics.

For example, the use of a code coverage tool can be instrumental in measuring test coverage. These tools help engineers determine which parts of the code are being tested and which parts are not. Analyzing the coverage report generated by these tools enables engineers to identify areas of the code that require additional testing, thereby ensuring thorough unit testing and a well-tested codebase[^0^][^1^][^2^].

A common approach to achieve high test coverage is to test different aspects of the code thoroughly. This includes testing various input scenarios, edge cases, and ensuring all branches of the code are covered by tests. Moreover, having a comprehensive set of test cases that cover all functionalities and features of the code being tested can ensure the code has been tested extensively and potential issues are identified early on[^4^].

To calculate the pass/fail rate in unit tests, engineers can divide the number of passed tests by the total number of tests executed. This gives a percentage representative of the pass rate. Similarly, the fail rate can be calculated by dividing the number of failed tests by the total number of tests executed[^5^].

Improving the pass/fail rate in unit tests can be achieved through several strategies. For instance, ensuring that unit tests focus on testing individual units of code in isolation can make it easier to identify and fix any issues that arise. Writing comprehensive and meaningful test cases, regularly reviewing and updating the unit tests, establishing a feedback loop between developers and testers, and using appropriate tools can all contribute to improving the pass/fail rate[^6^].

When it comes to the number of defects discovered in unit tests, it's crucial to analyze the results of the unit testing process. This includes identifying any failures or errors that occurred during the execution of the unit tests. Each of these failures can be considered as a defect discovered during unit testing[^7^]. Defects in unit tests can be minimized by ensuring each unit test focuses on testing a specific functionality or behavior in isolation, writing clear and concise test cases, and regularly reviewing and refactoring unit tests[^8^].

The time taken to run unit tests can be optimized through several techniques and best practices. These include writing focused and independent tests, using test doubles such as mocks or stubs to replace real dependencies, running tests in parallel, using test data factories to generate test data on the fly, and applying proper test coverage[^9^].

In summary, by focusing on key metrics and implementing strategies to improve test coverage and speed, senior software engineers can enhance the effectiveness of their unit testing efforts, ultimately leading to the delivery of high-quality software products

In conclusion, test coverage plays a vital role in software development by providing insights into the tested and untested portions of the code. It helps identify areas lacking in testing, leading to improved software quality and reduced software glitches. Achieving optimal test coverage requires a strategic approach, including prioritizing testing based on risk and complexity, utilizing automated testing tools, conducting regular code reviews, and monitoring test coverage metrics. By following these strategies, senior software engineers can optimize their testing efforts and deliver high-quality software applications.

The ideas discussed in this article have broader significance for the software development community. Effective test coverage is essential for ensuring reliable and robust software applications. It helps reduce the chances of unnoticed bugs and glitches, enhances software quality, and boosts developers' confidence in their code. By implementing efficient testing frameworks, utilizing automated testing tools, and measuring key metrics like test coverage and pass/fail rates, developers can improve their overall productivity and deliver high-quality software products.

Boost your productivity with Machinet. Experience the power of AI-assisted coding and automated unit test generation. Click here to learn more about how Machinet can help you enhance your testing efforts

Strategies to Improve Test Coverage for Senior Software Engineers – Machinet's Blog (2024)
Top Articles
Latest Posts
Article information

Author: Greg O'Connell

Last Updated:

Views: 6163

Rating: 4.1 / 5 (62 voted)

Reviews: 85% of readers found this page helpful

Author information

Name: Greg O'Connell

Birthday: 1992-01-10

Address: Suite 517 2436 Jefferey Pass, Shanitaside, UT 27519

Phone: +2614651609714

Job: Education Developer

Hobby: Cooking, Gambling, Pottery, Shooting, Baseball, Singing, Snowboarding

Introduction: My name is Greg O'Connell, I am a delightful, colorful, talented, kind, lively, modern, tender person who loves writing and wants to share my knowledge and understanding with you.