Mocking scala object
问题 I am using mockito and trying to mock a scala object. object Sample { } //test class SomeTest extends Specification with ScalaTest with Mockito { "mocking should succeed" in { val mockedSample = mock[Sample] } } This gives me two compilation errors. error: Not found type Sample error: could not find implicit value for parameter m: scala.reflect.ClassManifest[<error>] If I change Sample from object to class it works. Is is possible to mock scala objects with mockito? If yes how? 回答1: As