___________ 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)
The question was asked in an internship interview.
This intriguing question comes from Ant in division Running JUnit Tests from Ant of JUnit