Which is the expected workflow for "lest-Driven Development"?
Validate with the CI system, write the new functional code, and then verify that the test passes.
Write a new test, validate with the a system, and then write the new functional code.
Write a new falling unit test, write the new functional code to fix the test, verify that the test passes, and then refactor the code.
Write a new failing unit test, write the new functional code to fix the test, and then verify that the test passes.
Submit