Changes for page Test-Driven Development
Last modified by chrisby on 2024/08/27 08:42
Summary
-
Page properties (1 modified, 0 added, 0 removed)
Details
- Page properties
-
- Content
-
... ... @@ -17,8 +17,9 @@ 17 17 **Remarks** 18 18 19 19 * **Not compiling is a failure**: For example, if the test code requires a function from the production code that has not yet been defined, compilation will fail. Since the test fails, you must next go to the production code and make the test pass. 20 -* **Workflow**: In practice, you start writing a test until it fails, then switch to production until it passes, switch back to test code until it fails, and so on until the feature is complete. This leads to a very fast oscillation of switching between test code and production code. The last test should have passed within the last few minutes. 21 -* **Debugging**: The very short TDD cycles result in far fewer bugs. Bugs may still occur, but they are often trivial and don't require debugging. Experienced developers are capable of debugging, but they do not spend much time on it because of the consistent use of TDD. 20 +* **Workflow**: In practice, you start writing a test until it fails, then switch to production until it passes, switch back to test code until it fails, and so on until the feature is complete. This leads to a very fast oscillation of switching between test code and production code. Run tests on the code you are working on at least every few minutes. 21 + * Side note: Run all tests in the test suite at least once a day. 22 +* **Debugging**: The very short TDD cycles result in much less time spent debugging. Bugs still occur, but they are contained in the last incrementally changed small snippet of code, making them trivial to find and fix. Experienced developers are capable of debugging, but they do not spend much time on it because of the consistent use of TDD. 22 22 * **The tests need to run fast** so as not to block the developer from doing his task. See this [[test execution speed enhancing article|doc:Software Engineering.Testing.Enhance Test Execution Speed.WebHome]]. 23 23 24 24 ### Code Coverage ... ... @@ -26,3 +26,14 @@ 26 26 * **Incomplete Validation**: Passing tests doesn't mean that everything works, just that the tested parts aren't broken. Code coverage is a good first indicator of whether there are enough tests. 27 27 * **Almost 100% Code Coverage**: Code coverage needs to be high, ideally 100%, but in reality the practical achievable is in the high 90s. But code coverage alone is no guarantee of useful tests, so it should be taken with a grain of salt. It is better to look at the tests to get an idea of the actual quality of the test suite. 28 28 * **Technical Metric**: TDD is a technical agile practice, and therefore code coverage is a metric for developers to make decisions about, not the business. 30 + 31 +### Red-Green-Refactor (RGB) 32 + 33 +This is a simple model that describes the iterative TDD and refactoring workflow: 34 + 35 +1. Write a test that initially fails. (red terminal output) 36 +1. Implement production code to pass the test. (green terminal output) 37 +1. Refactor and make sure the tests still pass. 38 +1. Repeat until done. 39 + 40 +A more complex workflow that includes TDD and versioning with git can be found [[here|path:/bin/view/Software%20Engineering/Agile/Extreme%20Programming/Test-Driven%20Development/TDD%20Workflow%20Example/]].