Test Flashcards
1
Q
What type of test cases are mostly required to be automated?
A
2
Q
When vs verify in mockito?
A
- when(object.method()).thenReturn(expected value);
- verify(object).method();
3
Q
Test Pyramid
A
1- User Acceptance Test
2- End to End Test
3- Integration Test
4- Unit Test