|
|
|
|
|
by JoeNr76
2098 days ago
|
|
"The smallest amount of testable code. Often a single method/function," I hate (HAAAAATE) that definition of unit test. That's how some IDEs implemented unit tests, but it's not what was originally meant with the term 'unit' The unit tests the author means has no value outside testing while you are programming the code. For real value, unit tests shouldn't be bound to the implementation of your code. Unit tests should test a "unit of functionality", not a technical part of the code. |
|