-
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Mockito for JVM 1.4
-
get all your code upgraded to newer java (c'mon, you've got to do it at some point, plus JDK5 has already reached its end of service life!)
-
get your test code upgraded to newer java. You don't have to change production code - just set up your IDE & build tool to use jvm 1.5 to compile & run your tests. It may be tricky sometimes (you might need separate projects if you use Eclipse, etc) but there are Mockito users who managed to set it up.
-
Use mockito-all-jvm14-1.8.0.jar. It is maintained by James Carr. It was created using retrotranslator. In jdk14 there are no static imports so Mockito api via static methods makes the code a bit cluttered. To work around that there is an additional JUnit class
org.mockito.MockitoTestCase
that provides methods like mock, verify, etc. Please refer to javadocs or to the mailing list in case you have any questions.