Specify how to generate test code
Specify how to generate test code, such as the test framework to use and the number of test cases to generate.
Description
Example
// Using Junit and Mockito, add unit tests
// Test at least 10 variations of valid and invalid input combinations
@Test
public void validateInput() {
// Your code here
}Exercise
Checklist for Further Learning
Last updated