1.

___________ is used for the creation of a mock object, with the specification of it being of the requested type, which 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» C. createMock(String name, Class<T>toMock)


Discussion

No Comment Found