Test
-
TDD processing with examplesTestMetric 2019. 8. 27. 20:47
1. Overview TDD is a design tool, enabling us to drive some implementation with the help of tests. It validates if that code results in the expected state(state testing) or executes the expected sequence of events(behavior testing). It helps a developer to verify the logic of a piece of the program is correct. Running tests automatically helps to identify software regressions introduced by chang..