

MCQOPTIONS
Saved Bookmarks
1. |
__________________ creates a mock object, of the requested type and name which are passed, which also has implementations of the given interface or extends the given class? |
A. | createMock(Class <T> toMock) |
B. | createMock(MockType type, Class<T> toMock) |
C. | createMock(String name, Class<T> toMock) |
D. | createMock(String name, MockType type, Class<T> toMock) |
Answer» E. | |