Which is the larger concept of the test case/unit/suit?

Asked 1 years ago, Updated 1 years ago, 77 views

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

2022-09-20 19:14

1 Answers

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)


2022-09-20 19:14

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.