After searching here and there, I think the test case
is definitely the smallest unit of test code.
It is also found in many documents that test suit
and test unit
are units that bind case
to some extent.
Then is there a vertical relationship between suits
and units
? Or is it a synonym? Or is test unit
a misused word derived from unit test
?
Question Summary:
Is this right or not?
programming testing terminology
Test Case => Literally Case, Input into the corresponding test unit, or the number of times the test is performed (typically calling a function)
Test unit => Unit function to test. (Typically function)
Test Suit = > Set of test units (typically a bundle of functions)
© 2024 OneMinuteCode. All rights reserved.