Best Jmock-library code snippet using org.jmock.test.unit.lib.legacy.ClassImposteriserTests.AClassWithAPrivateConstructor
Source:ClassImposteriserTests.java
...47 public static final class AFinalClass {48 public String foo() {return "original result";}49 }50 51 public static class AClassWithAPrivateConstructor {52 @SuppressWarnings("unused")53 private AClassWithAPrivateConstructor(String someArgument) {}54 55 public String foo() {return "original result";}56 }57 58 public void testCanImposteriseInterfacesAndNonFinalInstantiableClasses() {59 assertTrue("should report that it can imposterise interfaces",60 imposteriser.canImposterise(Runnable.class));61 assertTrue("should report that it can imposterise classes",62 imposteriser.canImposterise(Date.class));63 assertTrue("should report that it cannot imposterise final classes",64 !imposteriser.canImposterise(AFinalClass.class));65 assertTrue("should report that it can imposterise nested classes",66 imposteriser.canImposterise(AnAbstractNestedClass.class));67 assertTrue("should report that it can imposterise inner classes",68 imposteriser.canImposterise(AnInnerClass.class));69 assertTrue("should report that it can imposterise classes with non-public constructors",70 imposteriser.canImposterise(AClassWithAPrivateConstructor.class));71 assertTrue("should report that it cannot imposterise primitive types",72 !imposteriser.canImposterise(int.class));73 assertTrue("should report that it cannot imposterise void",74 !imposteriser.canImposterise(void.class));75 }76 public void testCanImposteriseAConcreteClassWithoutCallingItsConstructorOrInstanceInitialiserBlocks() {77 ConcreteClassWithNastyConstructor imposter = 78 imposteriser.imposterise(action, ConcreteClassWithNastyConstructor.class);79 80 assertEquals("result", imposter.foo());81 }82 83 public void testCanImposteriseAnInterface() {84 AnInterface imposter = 85 imposteriser.imposterise(action, AnInterface.class);86 87 assertEquals("result", imposter.foo());88 }89 90 public void testCanImposteriseAClassWithAPrivateConstructor() {91 AClassWithAPrivateConstructor imposter = 92 imposteriser.imposterise(action, AClassWithAPrivateConstructor.class);93 94 assertEquals("result", imposter.foo());95 }96 97 public void testCanImposteriseAClassInASignedJarFile() throws Exception {98 File jarFile = new File("build/testdata/signed.jar");99 100 assertTrue("Signed JAR file does not exist (use Ant to build it", jarFile.exists());101 102 URL jarURL = jarFile.toURI().toURL();103 ClassLoader loader = new URLClassLoader(new URL[]{jarURL});104 Class<?> typeInSignedJar = loader.loadClass("TypeInSignedJar");105 106 Object o = imposteriser.imposterise(new VoidAction(), typeInSignedJar);...
Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.
You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.
Get 100 minutes of automation test minutes FREE!!