From 70cb2a704f312479d50523618d29a1f6c4959793 Mon Sep 17 00:00:00 2001 From: Johan Haleby Date: Fri, 4 Sep 2015 12:56:23 +0200 Subject: [PATCH] Created EasyMock support for bytebuddy --- .../org/powermock/api/easymock/PowerMock.java | 1042 +++++++---------- changelog.txt | 2 +- examples/byte-buddy-easymock/pom.xml | 40 + .../bytebuddy/easymock/SampleClass.java | 20 + .../easymock}/ByteBuddyWithPowerMockTest.java | 24 +- .../pom.xml | 2 +- .../bytebuddy/mockito}/SampleClass.java | 2 +- .../ByteBuddyWithPowerMockitoTest.java | 76 ++ examples/pom.xml | 3 +- 9 files changed, 562 insertions(+), 649 deletions(-) create mode 100644 examples/byte-buddy-easymock/pom.xml create mode 100644 examples/byte-buddy-easymock/src/main/java/powermock/examples/bytebuddy/easymock/SampleClass.java rename examples/{byte-buddy/src/test/java/powermock/examples/bytebuddy => byte-buddy-easymock/src/test/java/powermock/examples/bytebuddy/easymock}/ByteBuddyWithPowerMockTest.java (79%) rename examples/{byte-buddy => byte-buddy-mockito}/pom.xml (95%) rename examples/{byte-buddy/src/main/java/powermock/examples/bytebuddy => byte-buddy-mockito/src/main/java/powermock/examples/bytebuddy/mockito}/SampleClass.java (93%) create mode 100644 examples/byte-buddy-mockito/src/test/java/powermock/examples/bytebuddy/mockito/ByteBuddyWithPowerMockitoTest.java diff --git a/api/easymock/src/main/java/org/powermock/api/easymock/PowerMock.java b/api/easymock/src/main/java/org/powermock/api/easymock/PowerMock.java index dbf0ef84a..1285230a6 100644 --- a/api/easymock/src/main/java/org/powermock/api/easymock/PowerMock.java +++ b/api/easymock/src/main/java/org/powermock/api/easymock/PowerMock.java @@ -35,6 +35,7 @@ import org.powermock.core.DefaultFieldValueGenerator; import org.powermock.core.MockGateway; import org.powermock.core.MockRepository; +import org.powermock.core.classloader.MockClassLoader; import org.powermock.core.classloader.annotations.PrepareForTest; import org.powermock.core.classloader.annotations.PrepareOnlyThisForTest; import org.powermock.core.classloader.annotations.SuppressStaticInitializationFor; @@ -64,12 +65,9 @@ public class PowerMock extends MemberModifier { /** * Creates a mock object that supports mocking of final and native methods. * - * @param - * the type of the mock object - * @param type - * the type of the mock object - * @param methods - * optionally what methods to mock + * @param the type of the mock object + * @param type the type of the mock object + * @param methods optionally what methods to mock * @return the mock object. */ public static synchronized T createMock(Class type, Method... methods) { @@ -79,10 +77,8 @@ public static synchronized T createMock(Class type, Method... methods) { /** * Creates a mock object that supports mocking of final and native methods. * - * @param - * the type of the mock object - * @param type - * the type of the mock object + * @param the type of the mock object + * @param type the type of the mock object * @return the mock object. */ public static synchronized T createMock(Class type) { @@ -93,15 +89,11 @@ public static synchronized T createMock(Class type) { * Creates a mock object that supports mocking of final and native methods * and invokes a specific constructor. * - * @param - * the type of the mock object - * @param type - * the type of the mock object - * @param constructorArgs - * The constructor arguments that will be used to invoke a - * special constructor. - * @param methods - * optionally what methods to mock + * @param the type of the mock object + * @param type the type of the mock object + * @param constructorArgs The constructor arguments that will be used to invoke a + * special constructor. + * @param methods optionally what methods to mock * @return the mock object. */ public static T createMock(Class type, ConstructorArgs constructorArgs, Method... methods) { @@ -112,13 +104,10 @@ public static T createMock(Class type, ConstructorArgs constructorArgs, M * Creates a mock object that supports mocking of final and native methods * and invokes a specific constructor based on the supplied argument values. * - * @param - * the type of the mock object - * @param type - * the type of the mock object - * @param constructorArguments - * The constructor arguments that will be used to invoke a - * certain constructor. + * @param the type of the mock object + * @param type the type of the mock object + * @param constructorArguments The constructor arguments that will be used to invoke a + * certain constructor. * @return the mock object. */ public static T createMock(Class type, Object... constructorArguments) { @@ -131,12 +120,9 @@ public static T createMock(Class type, Object... constructorArguments) { * Creates a strict mock object that supports mocking of final and native * methods. * - * @param - * the type of the mock object - * @param type - * the type of the mock object - * @param methods - * optionally what methods to mock + * @param the type of the mock object + * @param type the type of the mock object + * @param methods optionally what methods to mock * @return the mock object. */ public static synchronized T createStrictMock(Class type, Method... methods) { @@ -147,10 +133,8 @@ public static synchronized T createStrictMock(Class type, Method... metho * Creates a strict mock object that supports mocking of final and native * methods. * - * @param - * the type of the mock object - * @param type - * the type of the mock object + * @param the type of the mock object + * @param type the type of the mock object * @return the mock object. */ public static synchronized T createStrictMock(Class type) { @@ -161,12 +145,9 @@ public static synchronized T createStrictMock(Class type) { * Creates a nice mock object that supports mocking of final and native * methods. * - * @param - * the type of the mock object - * @param type - * the type of the mock object - * @param methods - * optionally what methods to mock + * @param the type of the mock object + * @param type the type of the mock object + * @param methods optionally what methods to mock * @return the mock object. */ public static synchronized T createNiceMock(Class type, Method... methods) { @@ -177,10 +158,8 @@ public static synchronized T createNiceMock(Class type, Method... methods * Creates a nice mock object that supports mocking of final and native * methods. * - * @param - * the type of the mock object - * @param type - * the type of the mock object + * @param the type of the mock object + * @param type the type of the mock object * @return the mock object. */ public static synchronized T createNiceMock(Class type) { @@ -191,15 +170,11 @@ public static synchronized T createNiceMock(Class type) { * Creates a strict mock object that supports mocking of final and native * methods and invokes a specific constructor. * - * @param - * the type of the mock object - * @param type - * the type of the mock object - * @param constructorArgs - * The constructor arguments that will be used to invoke a - * special constructor. - * @param methods - * optionally what methods to mock + * @param the type of the mock object + * @param type the type of the mock object + * @param constructorArgs The constructor arguments that will be used to invoke a + * special constructor. + * @param methods optionally what methods to mock * @return the mock object. */ public static T createStrictMock(Class type, ConstructorArgs constructorArgs, Method... methods) { @@ -210,15 +185,11 @@ public static T createStrictMock(Class type, ConstructorArgs constructorA * Creates a nice mock object that supports mocking of final and native * methods and invokes a specific constructor. * - * @param - * the type of the mock object - * @param type - * the type of the mock object - * @param constructorArgs - * The constructor arguments that will be used to invoke a - * special constructor. - * @param methods - * optionally what methods to mock + * @param the type of the mock object + * @param type the type of the mock object + * @param constructorArgs The constructor arguments that will be used to invoke a + * special constructor. + * @param methods optionally what methods to mock * @return the mock object. */ public static T createNiceMock(Class type, ConstructorArgs constructorArgs, Method... methods) { @@ -230,13 +201,10 @@ public static T createNiceMock(Class type, ConstructorArgs constructorArg * methods and invokes a specific constructor based on the supplied argument * values. * - * @param - * the type of the mock object - * @param type - * the type of the mock object - * @param constructorArguments - * The constructor arguments that will be used to invoke a - * certain constructor. + * @param the type of the mock object + * @param type the type of the mock object + * @param constructorArguments The constructor arguments that will be used to invoke a + * certain constructor. * @return the mock object. */ public static T createStrictMock(Class type, Object... constructorArguments) { @@ -250,13 +218,10 @@ public static T createStrictMock(Class type, Object... constructorArgumen * methods and invokes a specific constructor based on the supplied argument * values. * - * @param - * the type of the mock object - * @param type - * the type of the mock object - * @param constructorArguments - * The constructor arguments that will be used to invoke a - * certain constructor. + * @param the type of the mock object + * @param type the type of the mock object + * @param constructorArguments The constructor arguments that will be used to invoke a + * certain constructor. * @return the mock object. */ public static T createNiceMock(Class type, Object... constructorArguments) { @@ -268,10 +233,8 @@ public static T createNiceMock(Class type, Object... constructorArguments /** * Enable static mocking for a class. * - * @param type - * the class to enable static mocking - * @param methods - * optionally what methods to mock + * @param type the class to enable static mocking + * @param methods optionally what methods to mock */ public static synchronized void mockStatic(Class type, Method... methods) { doMock(type, true, new DefaultMockStrategy(), null, methods); @@ -280,8 +243,7 @@ public static synchronized void mockStatic(Class type, Method... methods) { /** * Enable static mocking for a class. * - * @param type - * the class to enable static mocking + * @param type the class to enable static mocking */ public static synchronized void mockStatic(Class type) { doMock(type, true, new DefaultMockStrategy(), null, (Method[]) null); @@ -290,10 +252,8 @@ public static synchronized void mockStatic(Class type) { /** * Enable strict static mocking for a class. * - * @param type - * the class to enable static mocking - * @param methods - * optionally what methods to mock + * @param type the class to enable static mocking + * @param methods optionally what methods to mock */ public static synchronized void mockStaticStrict(Class type, Method... methods) { doMock(type, true, new StrictMockStrategy(), null, methods); @@ -302,8 +262,7 @@ public static synchronized void mockStaticStrict(Class type, Method... method /** * Enable strict static mocking for a class. * - * @param type - * the class to enable static mocking + * @param type the class to enable static mocking */ public static synchronized void mockStaticStrict(Class type) { doMock(type, true, new StrictMockStrategy(), null, (Method[]) null); @@ -312,10 +271,8 @@ public static synchronized void mockStaticStrict(Class type) { /** * Enable nice static mocking for a class. * - * @param type - * the class to enable static mocking - * @param methods - * optionally what methods to mock + * @param type the class to enable static mocking + * @param methods optionally what methods to mock */ public static synchronized void mockStaticNice(Class type, Method... methods) { doMock(type, true, new NiceMockStrategy(), null, methods); @@ -324,8 +281,7 @@ public static synchronized void mockStaticNice(Class type, Method... methods) /** * Enable nice static mocking for a class. * - * @param type - * the class to enable static mocking + * @param type the class to enable static mocking */ public static synchronized void mockStaticNice(Class type) { doMock(type, true, new NiceMockStrategy(), null, (Method[]) null); @@ -342,16 +298,13 @@ public static synchronized void mockStaticNice(Class type) { * fall-back on using the {@link #createMock(Class, Method...)} method * instead. * - * @param - * The type of the mock. - * @param type - * The type that'll be used to create a mock instance. - * @param methodNames - * The names of the methods that should be mocked. If - * null, then this method will have the same effect - * as just calling {@link #createMock(Class, Method...)} with the - * second parameter as new Method[0] (i.e. all - * methods in that class will be mocked). + * @param The type of the mock. + * @param type The type that'll be used to create a mock instance. + * @param methodNames The names of the methods that should be mocked. If + * null, then this method will have the same effect + * as just calling {@link #createMock(Class, Method...)} with the + * second parameter as new Method[0] (i.e. all + * methods in that class will be mocked). * @return A mock object of type . */ public static synchronized T createPartialMockForAllMethodsExcept(Class type, String... methodNames) { @@ -373,16 +326,13 @@ public static synchronized T createPartialMockForAllMethodsExcept(Class t * fall-back on using the {@link #createMock(Class, Method...)} method * instead. * - * @param - * The type of the mock. - * @param type - * The type that'll be used to create a mock instance. - * @param methodNames - * The names of the methods that should be mocked. If - * null, then this method will have the same effect - * as just calling {@link #createMock(Class, Method...)} with the - * second parameter as new Method[0] (i.e. all - * methods in that class will be mocked). + * @param The type of the mock. + * @param type The type that'll be used to create a mock instance. + * @param methodNames The names of the methods that should be mocked. If + * null, then this method will have the same effect + * as just calling {@link #createMock(Class, Method...)} with the + * second parameter as new Method[0] (i.e. all + * methods in that class will be mocked). * @return A mock object of type . */ public static synchronized T createNicePartialMockForAllMethodsExcept(Class type, String... methodNames) { @@ -404,16 +354,13 @@ public static synchronized T createNicePartialMockForAllMethodsExcept(Class< * fall-back on using the {@link #createMock(Class, Method...)} method * instead. * - * @param - * The type of the mock. - * @param type - * The type that'll be used to create a mock instance. - * @param methodNames - * The names of the methods that should be mocked. If - * null, then this method will have the same effect - * as just calling {@link #createMock(Class, Method...)} with the - * second parameter as new Method[0] (i.e. all - * methods in that class will be mocked). + * @param The type of the mock. + * @param type The type that'll be used to create a mock instance. + * @param methodNames The names of the methods that should be mocked. If + * null, then this method will have the same effect + * as just calling {@link #createMock(Class, Method...)} with the + * second parameter as new Method[0] (i.e. all + * methods in that class will be mocked). * @return A mock object of type . */ public static synchronized T createStrictPartialMockForAllMethodsExcept(Class type, String... methodNames) { @@ -428,17 +375,12 @@ public static synchronized T createStrictPartialMockForAllMethodsExcept(Clas * Mock all methods of a class except for a specific one. Use this method * only if you have several overloaded methods. * - * @param - * The type of the mock. - * @param type - * The type that'll be used to create a mock instance. - * @param methodNameToExclude - * The name of the method not to mock. - * @param firstArgumentType - * The type of the first parameter of the method not to mock - * @param moreTypes - * Optionally more parameter types that defines the method. Note - * that this is only needed to separate overloaded methods. + * @param The type of the mock. + * @param type The type that'll be used to create a mock instance. + * @param methodNameToExclude The name of the method not to mock. + * @param firstArgumentType The type of the first parameter of the method not to mock + * @param moreTypes Optionally more parameter types that defines the method. Note + * that this is only needed to separate overloaded methods. * @return A mock object of type . */ public static synchronized T createPartialMockForAllMethodsExcept(Class type, String methodNameToExclude, @@ -457,17 +399,12 @@ public static synchronized T createPartialMockForAllMethodsExcept(Class t * Mock all methods of a class except for a specific one nicely. Use this * method only if you have several overloaded methods. * - * @param - * The type of the mock. - * @param type - * The type that'll be used to create a mock instance. - * @param methodNameToExclude - * The name of the method not to mock. - * @param firstArgumentType - * The type of the first parameter of the method not to mock - * @param moreTypes - * Optionally more parameter types that defines the method. Note - * that this is only needed to separate overloaded methods. + * @param The type of the mock. + * @param type The type that'll be used to create a mock instance. + * @param methodNameToExclude The name of the method not to mock. + * @param firstArgumentType The type of the first parameter of the method not to mock + * @param moreTypes Optionally more parameter types that defines the method. Note + * that this is only needed to separate overloaded methods. * @return A mock object of type . */ public static synchronized T createNicePartialMockForAllMethodsExcept(Class type, @@ -486,17 +423,12 @@ public static synchronized T createNicePartialMockForAllMethodsExcept(Class< * Mock all methods of a class except for a specific one strictly. Use this * method only if you have several overloaded methods. * - * @param - * The type of the mock. - * @param type - * The type that'll be used to create a mock instance. - * @param methodNameToExclude - * The name of the method not to mock. - * @param firstArgumentType - * The type of the first parameter of the method not to mock - * @param moreTypes - * Optionally more parameter types that defines the method. Note - * that this is only needed to separate overloaded methods. + * @param The type of the mock. + * @param type The type that'll be used to create a mock instance. + * @param methodNameToExclude The name of the method not to mock. + * @param firstArgumentType The type of the first parameter of the method not to mock + * @param moreTypes Optionally more parameter types that defines the method. Note + * that this is only needed to separate overloaded methods. * @return A mock object of type . */ public static synchronized T createStrictPartialMockForAllMethodsExcept(Class type, @@ -514,22 +446,17 @@ public static synchronized T createStrictPartialMockForAllMethodsExcept(Clas /** * Mock a single specific method. Use this to handle overloaded methods. * - * @param - * The type of the mock. - * @param type - * The type that'll be used to create a mock instance. - * @param methodNameToMock - * The name of the method to mock - * @param firstArgumentType - * The type of the first parameter of the method to mock - * @param additionalArgumentTypes - * Optionally more parameter types that defines the method. Note - * that this is only needed to separate overloaded methods. + * @param The type of the mock. + * @param type The type that'll be used to create a mock instance. + * @param methodNameToMock The name of the method to mock + * @param firstArgumentType The type of the first parameter of the method to mock + * @param additionalArgumentTypes Optionally more parameter types that defines the method. Note + * that this is only needed to separate overloaded methods. * @return A mock object of type . */ public static synchronized T createPartialMock(Class type, String methodNameToMock, Class firstArgumentType, Class... additionalArgumentTypes) { - return doMockSpecific(type, new DefaultMockStrategy(), new String[] { methodNameToMock }, null, + return doMockSpecific(type, new DefaultMockStrategy(), new String[]{methodNameToMock}, null, mergeArgumentTypes(firstArgumentType, additionalArgumentTypes)); } @@ -537,22 +464,17 @@ public static synchronized T createPartialMock(Class type, String methodN * Strictly mock a single specific method. Use this to handle overloaded * methods. * - * @param - * The type of the mock. - * @param type - * The type that'll be used to create a mock instance. - * @param methodNameToMock - * The name of the method to mock - * @param firstArgumentType - * The type of the first parameter of the method to mock - * @param additionalArgumentTypes - * Optionally more parameter types that defines the method. Note - * that this is only needed to separate overloaded methods. + * @param The type of the mock. + * @param type The type that'll be used to create a mock instance. + * @param methodNameToMock The name of the method to mock + * @param firstArgumentType The type of the first parameter of the method to mock + * @param additionalArgumentTypes Optionally more parameter types that defines the method. Note + * that this is only needed to separate overloaded methods. * @return A mock object of type . */ public static synchronized T createStrictPartialMock(Class type, String methodNameToMock, Class firstArgumentType, Class... additionalArgumentTypes) { - return doMockSpecific(type, new StrictMockStrategy(), new String[] { methodNameToMock }, null, + return doMockSpecific(type, new StrictMockStrategy(), new String[]{methodNameToMock}, null, mergeArgumentTypes(firstArgumentType, additionalArgumentTypes)); } @@ -560,76 +482,59 @@ public static synchronized T createStrictPartialMock(Class type, String m * Nicely mock a single specific method. Use this to handle overloaded * methods. * - * @param - * The type of the mock. - * @param type - * The type that'll be used to create a mock instance. - * @param methodNameToMock - * The name of the method to mock - * @param firstArgumentType - * The type of the first parameter of the method to mock - * @param additionalArgumentTypes - * Optionally more parameter types that defines the method. Note - * that this is only needed to separate overloaded methods. + * @param The type of the mock. + * @param type The type that'll be used to create a mock instance. + * @param methodNameToMock The name of the method to mock + * @param firstArgumentType The type of the first parameter of the method to mock + * @param additionalArgumentTypes Optionally more parameter types that defines the method. Note + * that this is only needed to separate overloaded methods. * @return A mock object of type . */ public static synchronized T createNicePartialMock(Class type, String methodNameToMock, Class firstArgumentType, Class... additionalArgumentTypes) { - return doMockSpecific(type, new NiceMockStrategy(), new String[] { methodNameToMock }, null, + return doMockSpecific(type, new NiceMockStrategy(), new String[]{methodNameToMock}, null, mergeArgumentTypes(firstArgumentType, additionalArgumentTypes)); } /** * Mock a single static method. * - * @param clazz - * The class where the method is specified in. - * @param methodNameToMock - * The first argument - * @param firstArgumentType - * The first argument type. - * @param additionalArgumentTypes - * Optional additional argument types. + * @param clazz The class where the method is specified in. + * @param methodNameToMock The first argument + * @param firstArgumentType The first argument type. + * @param additionalArgumentTypes Optional additional argument types. */ public static synchronized void mockStaticPartial(Class clazz, String methodNameToMock, Class firstArgumentType, Class... additionalArgumentTypes) { - doMockSpecific(clazz, new DefaultMockStrategy(), new String[] { methodNameToMock }, null, + doMockSpecific(clazz, new DefaultMockStrategy(), new String[]{methodNameToMock}, null, mergeArgumentTypes(firstArgumentType, additionalArgumentTypes)); } /** * Mock a single static method (strict). * - * @param clazz - * The class where the method is specified in. - * @param methodNameToMock - * The first argument - * @param firstArgumentType - * The first argument type. - * @param additionalArgumentTypes - * Optional additional argument types. + * @param clazz The class where the method is specified in. + * @param methodNameToMock The first argument + * @param firstArgumentType The first argument type. + * @param additionalArgumentTypes Optional additional argument types. */ public static synchronized void mockStaticPartialStrict(Class clazz, String methodNameToMock, Class firstArgumentType, Class... additionalArgumentTypes) { - doMockSpecific(clazz, new StrictMockStrategy(), new String[] { methodNameToMock }, null, + doMockSpecific(clazz, new StrictMockStrategy(), new String[]{methodNameToMock}, null, mergeArgumentTypes(firstArgumentType, additionalArgumentTypes)); } /** * Mock a single static method (nice). * - * @param clazz - * The class where the method is specified in. - * @param methodNameToMock - * The first argument - * @param firstArgumentType - * The first argument type. - * @param additionalArgumentTypes - * Optional additional argument types. + * @param clazz The class where the method is specified in. + * @param methodNameToMock The first argument + * @param firstArgumentType The first argument type. + * @param additionalArgumentTypes Optional additional argument types. */ public static synchronized void mockStaticPartialNice(Class clazz, String methodNameToMock, Class firstArgumentType, Class... additionalArgumentTypes) { - doMockSpecific(clazz, new NiceMockStrategy(), new String[] { methodNameToMock }, null, + doMockSpecific(clazz, new NiceMockStrategy(), new String[]{methodNameToMock}, null, mergeArgumentTypes(firstArgumentType, additionalArgumentTypes)); } @@ -643,15 +548,13 @@ public static synchronized void mockStaticPartialNice(Class clazz, String met * case you should fall-back on using the * {@link #mockStatic(Class, Method...)} method instead. * - * @param clazz - * The class that contains the static methods that should be - * mocked. - * @param methodNames - * The names of the methods that should be mocked. If - * null, then this method will have the same effect - * as just calling {@link #mockStatic(Class, Method...)} with the - * second parameter as new Method[0] (i.e. all - * methods in that class will be mocked). + * @param clazz The class that contains the static methods that should be + * mocked. + * @param methodNames The names of the methods that should be mocked. If + * null, then this method will have the same effect + * as just calling {@link #mockStatic(Class, Method...)} with the + * second parameter as new Method[0] (i.e. all + * methods in that class will be mocked). */ public static synchronized void mockStaticPartial(Class clazz, String... methodNames) { mockStatic(clazz, Whitebox.getMethods(clazz, methodNames)); @@ -667,15 +570,13 @@ public static synchronized void mockStaticPartial(Class clazz, String... meth * case you should fall-back on using the * {@link #mockStaticStrict(Class, Method...)} method instead. * - * @param clazz - * The class that contains the static methods that should be - * mocked. - * @param methodNames - * The names of the methods that should be mocked. If - * null, then this method will have the same effect - * as just calling {@link #mockStatic(Class, Method...)} with the - * second parameter as new Method[0] (i.e. all - * methods in that class will be mocked). + * @param clazz The class that contains the static methods that should be + * mocked. + * @param methodNames The names of the methods that should be mocked. If + * null, then this method will have the same effect + * as just calling {@link #mockStatic(Class, Method...)} with the + * second parameter as new Method[0] (i.e. all + * methods in that class will be mocked). */ public static synchronized void mockStaticPartialStrict(Class clazz, String... methodNames) { mockStaticStrict(clazz, Whitebox.getMethods(clazz, methodNames)); @@ -691,15 +592,13 @@ public static synchronized void mockStaticPartialStrict(Class clazz, String.. * case you should fall-back on using the * {@link #mockStaticStrict(Class, Method...)} method instead. * - * @param clazz - * The class that contains the static methods that should be - * mocked. - * @param methodNames - * The names of the methods that should be mocked. If - * null, then this method will have the same effect - * as just calling {@link #mockStatic(Class, Method...)} with the - * second parameter as new Method[0] (i.e. all - * methods in that class will be mocked). + * @param clazz The class that contains the static methods that should be + * mocked. + * @param methodNames The names of the methods that should be mocked. If + * null, then this method will have the same effect + * as just calling {@link #mockStatic(Class, Method...)} with the + * second parameter as new Method[0] (i.e. all + * methods in that class will be mocked). */ public static synchronized void mockStaticPartialNice(Class clazz, String... methodNames) { mockStaticNice(clazz, Whitebox.getMethods(clazz, methodNames)); @@ -746,16 +645,13 @@ static T doMockSpecific(Class type, MockStrategy mockStrategy, String[] m * fall-back on using the {@link #createMock(Class, Method...)} method * instead. * - * @param - * The type of the mock. - * @param type - * The type that'll be used to create a mock instance. - * @param methodNames - * The names of the methods that should be mocked. If - * null, then this method will have the same effect - * as just calling {@link #createMock(Class, Method...)} with the - * second parameter as new Method[0] (i.e. all - * methods in that class will be mocked). + * @param The type of the mock. + * @param type The type that'll be used to create a mock instance. + * @param methodNames The names of the methods that should be mocked. If + * null, then this method will have the same effect + * as just calling {@link #createMock(Class, Method...)} with the + * second parameter as new Method[0] (i.e. all + * methods in that class will be mocked). * @return A mock object of type . */ public static synchronized T createPartialMock(Class type, String... methodNames) { @@ -771,31 +667,26 @@ public static synchronized T createPartialMock(Class type, String... meth * of parameter types and signature. If this is the case you should * fall-back on using the {@link #createMock(Class, Method...)} method * instead. - *

+ *

* With this method you can specify where the class hierarchy the methods * are located. This is useful in, for example, situations where class A * extends B and both have a method called "mockMe" (A overrides B's mockMe * method) and you like to specify the only the "mockMe" method in B should * be mocked. "mockMe" in A should be left intact. In this case you should * do: - * + *

*

      * A tested = createPartialMock(A.class, B.class, "mockMe");
      * 
* - * - * @param - * The type of the mock. - * @param type - * The type that'll be used to create a mock instance. - * @param where - * Where in the class hierarchy the methods resides. - * @param methodNames - * The names of the methods that should be mocked. If - * null, then this method will have the same effect - * as just calling {@link #createMock(Class, Method...)} with the - * second parameter as new Method[0] (i.e. all - * methods in that class will be mocked). + * @param The type of the mock. + * @param type The type that'll be used to create a mock instance. + * @param where Where in the class hierarchy the methods resides. + * @param methodNames The names of the methods that should be mocked. If + * null, then this method will have the same effect + * as just calling {@link #createMock(Class, Method...)} with the + * second parameter as new Method[0] (i.e. all + * methods in that class will be mocked). * @return A mock object of type . */ public static synchronized T createPartialMock(Class type, Class where, String... methodNames) { @@ -812,16 +703,13 @@ public static synchronized T createPartialMock(Class type, Class - * The type of the mock. - * @param type - * The type that'll be used to create a mock instance. - * @param methodNames - * The names of the methods that should be mocked. If - * null, then this method will have the same effect - * as just calling {@link #createMock(Class, Method...)} with the - * second parameter as new Method[0] (i.e. all - * methods in that class will be mocked). + * @param The type of the mock. + * @param type The type that'll be used to create a mock instance. + * @param methodNames The names of the methods that should be mocked. If + * null, then this method will have the same effect + * as just calling {@link #createMock(Class, Method...)} with the + * second parameter as new Method[0] (i.e. all + * methods in that class will be mocked). * @return A mock object of type . */ public static synchronized T createStrictPartialMock(Class type, String... methodNames) { @@ -837,30 +725,26 @@ public static synchronized T createStrictPartialMock(Class type, String.. * supplied name regardless of parameter types and signature. If this is the * case you should fall-back on using the * {@link #createMock(Class, Method...)} method instead. - *

+ *

* With this method you can specify where the class hierarchy the methods * are located. This is useful in, for example, situations where class A * extends B and both have a method called "mockMe" (A overrides B's mockMe * method) and you like to specify the only the "mockMe" method in B should * be mocked. "mockMe" in A should be left intact. In this case you should * do: - * + *

*

      * A tested = createPartialMockStrict(A.class, B.class, "mockMe");
      * 
* - * @param - * The type of the mock. - * @param type - * The type that'll be used to create a mock instance. - * @param where - * Where in the class hierarchy the methods resides. - * @param methodNames - * The names of the methods that should be mocked. If - * null, then this method will have the same effect - * as just calling {@link #createMock(Class, Method...)} with the - * second parameter as new Method[0] (i.e. all - * methods in that class will be mocked). + * @param The type of the mock. + * @param type The type that'll be used to create a mock instance. + * @param where Where in the class hierarchy the methods resides. + * @param methodNames The names of the methods that should be mocked. If + * null, then this method will have the same effect + * as just calling {@link #createMock(Class, Method...)} with the + * second parameter as new Method[0] (i.e. all + * methods in that class will be mocked). * @return A mock object of type . */ public static synchronized T createStrictPartialMock(Class type, Class where, @@ -878,16 +762,13 @@ public static synchronized T createStrictPartialMock(Class type, Class - * The type of the mock. - * @param type - * The type that'll be used to create a mock instance. - * @param methodNames - * The names of the methods that should be mocked. If - * null, then this method will have the same effect - * as just calling {@link #createMock(Class, Method...)} with the - * second parameter as new Method[0] (i.e. all - * methods in that class will be mocked). + * @param The type of the mock. + * @param type The type that'll be used to create a mock instance. + * @param methodNames The names of the methods that should be mocked. If + * null, then this method will have the same effect + * as just calling {@link #createMock(Class, Method...)} with the + * second parameter as new Method[0] (i.e. all + * methods in that class will be mocked). * @return A mock object of type . */ public static synchronized T createNicePartialMock(Class type, String... methodNames) { @@ -903,30 +784,26 @@ public static synchronized T createNicePartialMock(Class type, String... * supplied name regardless of parameter types and signature. If this is the * case you should fall-back on using the * {@link #createMock(Class, Method...)} method instead. - *

+ *

* With this method you can specify where the class hierarchy the methods * are located. This is useful in, for example, situations where class A * extends B and both have a method called "mockMe" (A overrides B's mockMe * method) and you like to specify the only the "mockMe" method in B should * be mocked. "mockMe" in A should be left intact. In this case you should * do: - * + *

*

      * A tested = createPartialMockNice(A.class, B.class, "mockMe");
      * 
* - * @param - * The type of the mock. - * @param type - * The type that'll be used to create a mock instance. - * @param where - * Where in the class hierarchy the methods resides. - * @param methodNames - * The names of the methods that should be mocked. If - * null, then this method will have the same effect - * as just calling {@link #createMock(Class, Method...)} with the - * second parameter as new Method[0] (i.e. all - * methods in that class will be mocked). + * @param The type of the mock. + * @param type The type that'll be used to create a mock instance. + * @param where Where in the class hierarchy the methods resides. + * @param methodNames The names of the methods that should be mocked. If + * null, then this method will have the same effect + * as just calling {@link #createMock(Class, Method...)} with the + * second parameter as new Method[0] (i.e. all + * methods in that class will be mocked). * @return A mock object of type . */ public static synchronized T createNicePartialMock(Class type, Class where, String... methodNames) { @@ -939,16 +816,13 @@ public static synchronized T createNicePartialMock(Class type, Class - * the type of the mock object - * @param type - * the type of the mock object - * @param methodNames - * The names of the methods that should be mocked. If - * null, then this method will have the same effect - * as just calling {@link #createMock(Class, Method...)} with the - * second parameter as new Method[0] (i.e. all - * methods in that class will be mocked). + * @param the type of the mock object + * @param type the type of the mock object + * @param methodNames The names of the methods that should be mocked. If + * null, then this method will have the same effect + * as just calling {@link #createMock(Class, Method...)} with the + * second parameter as new Method[0] (i.e. all + * methods in that class will be mocked). * @return the mock object. */ public static T createPartialMockAndInvokeDefaultConstructor(Class type, String... methodNames) @@ -963,16 +837,13 @@ public static T createPartialMockAndInvokeDefaultConstructor(Class type, * mock). The mock object created will support mocking of final methods and * invokes the default constructor (even if it's private). * - * @param - * the type of the mock object - * @param type - * the type of the mock object - * @param methodNames - * The names of the methods that should be mocked. If - * null, then this method will have the same effect - * as just calling {@link #createMock(Class, Method...)} with the - * second parameter as new Method[0] (i.e. all - * methods in that class will be mocked). + * @param the type of the mock object + * @param type the type of the mock object + * @param methodNames The names of the methods that should be mocked. If + * null, then this method will have the same effect + * as just calling {@link #createMock(Class, Method...)} with the + * second parameter as new Method[0] (i.e. all + * methods in that class will be mocked). * @return the mock object. */ public static T createNicePartialMockAndInvokeDefaultConstructor(Class type, String... methodNames) @@ -987,16 +858,13 @@ public static T createNicePartialMockAndInvokeDefaultConstructor(Class ty * mock). The mock object created will support mocking of final methods and * invokes the default constructor (even if it's private). * - * @param - * the type of the mock object - * @param type - * the type of the mock object - * @param methodNames - * The names of the methods that should be mocked. If - * null, then this method will have the same effect - * as just calling {@link #createMock(Class, Method...)} with the - * second parameter as new Method[0] (i.e. all - * methods in that class will be mocked). + * @param the type of the mock object + * @param type the type of the mock object + * @param methodNames The names of the methods that should be mocked. If + * null, then this method will have the same effect + * as just calling {@link #createMock(Class, Method...)} with the + * second parameter as new Method[0] (i.e. all + * methods in that class will be mocked). * @return the mock object. */ public static T createStrictPartialMockAndInvokeDefaultConstructor(Class type, String... methodNames) @@ -1011,19 +879,15 @@ public static T createStrictPartialMockAndInvokeDefaultConstructor(Class * mock object created will support mocking of final and native methods and * invokes a specific constructor based on the supplied argument values. * - * @param - * the type of the mock object - * @param type - * the type of the mock object - * @param methodNames - * The names of the methods that should be mocked. If - * null, then this method will have the same effect - * as just calling {@link #createMock(Class, Method...)} with the - * second parameter as new Method[0] (i.e. all - * methods in that class will be mocked). - * @param constructorArguments - * The constructor arguments that will be used to invoke a - * certain constructor. (optional) + * @param the type of the mock object + * @param type the type of the mock object + * @param methodNames The names of the methods that should be mocked. If + * null, then this method will have the same effect + * as just calling {@link #createMock(Class, Method...)} with the + * second parameter as new Method[0] (i.e. all + * methods in that class will be mocked). + * @param constructorArguments The constructor arguments that will be used to invoke a + * certain constructor. (optional) * @return the mock object. */ public static T createPartialMock(Class type, String[] methodNames, Object... constructorArguments) { @@ -1039,19 +903,15 @@ public static T createPartialMock(Class type, String[] methodNames, Objec * native methods and invokes a specific constructor based on the supplied * argument values. * - * @param - * the type of the mock object - * @param type - * the type of the mock object - * @param methodNames - * The names of the methods that should be mocked. If - * null, then this method will have the same effect - * as just calling {@link #createMock(Class, Method...)} with the - * second parameter as new Method[0] (i.e. all - * methods in that class will be mocked). - * @param constructorArguments - * The constructor arguments that will be used to invoke a - * certain constructor. (optional) + * @param the type of the mock object + * @param type the type of the mock object + * @param methodNames The names of the methods that should be mocked. If + * null, then this method will have the same effect + * as just calling {@link #createMock(Class, Method...)} with the + * second parameter as new Method[0] (i.e. all + * methods in that class will be mocked). + * @param constructorArguments The constructor arguments that will be used to invoke a + * certain constructor. (optional) * @return the mock object. */ public static T createStrictPartialMock(Class type, String[] methodNames, Object... constructorArguments) { @@ -1067,19 +927,15 @@ public static T createStrictPartialMock(Class type, String[] methodNames, * methods and invokes a specific constructor based on the supplied argument * values. * - * @param - * the type of the mock object - * @param type - * the type of the mock object - * @param methodNames - * The names of the methods that should be mocked. If - * null, then this method will have the same effect - * as just calling {@link #createMock(Class, Method...)} with the - * second parameter as new Method[0] (i.e. all - * methods in that class will be mocked). - * @param constructorArguments - * The constructor arguments that will be used to invoke a - * certain constructor. (optional) + * @param the type of the mock object + * @param type the type of the mock object + * @param methodNames The names of the methods that should be mocked. If + * null, then this method will have the same effect + * as just calling {@link #createMock(Class, Method...)} with the + * second parameter as new Method[0] (i.e. all + * methods in that class will be mocked). + * @param constructorArguments The constructor arguments that will be used to invoke a + * certain constructor. (optional) * @return the mock object. */ public static T createNicePartialMock(Class type, String[] methodNames, Object... constructorArguments) { @@ -1095,29 +951,24 @@ public static T createNicePartialMock(Class type, String[] methodNames, O * mocking of final and native methods and invokes a specific constructor * based on the supplied argument values. * - * @param - * the type of the mock object - * @param type - * the type of the mock object - * @param methodName - * The names of the methods that should be mocked. If - * null, then this method will have the same effect - * as just calling {@link #createMock(Class, Method...)} with the - * second parameter as new Method[0] (i.e. all - * methods in that class will be mocked). - * @param methodParameterTypes - * Parameter types that defines the method. Note that this is - * only needed to separate overloaded methods. - * @param constructorArguments - * The constructor arguments that will be used to invoke a - * certain constructor. (optional) + * @param the type of the mock object + * @param type the type of the mock object + * @param methodName The names of the methods that should be mocked. If + * null, then this method will have the same effect + * as just calling {@link #createMock(Class, Method...)} with the + * second parameter as new Method[0] (i.e. all + * methods in that class will be mocked). + * @param methodParameterTypes Parameter types that defines the method. Note that this is + * only needed to separate overloaded methods. + * @param constructorArguments The constructor arguments that will be used to invoke a + * certain constructor. (optional) * @return the mock object. */ public static T createPartialMock(Class type, String methodName, Class[] methodParameterTypes, Object... constructorArguments) { Constructor constructor = WhiteboxImpl.findUniqueConstructorOrThrowException(type, constructorArguments); ConstructorArgs constructorArgs = new ConstructorArgs(constructor, constructorArguments); - return doMockSpecific(type, new DefaultMockStrategy(), new String[] { methodName }, constructorArgs, + return doMockSpecific(type, new DefaultMockStrategy(), new String[]{methodName}, constructorArgs, methodParameterTypes); } @@ -1128,29 +979,24 @@ public static T createPartialMock(Class type, String methodName, Class * will support mocking of final and native methods and invokes a specific * constructor based on the supplied argument values. * - * @param - * the type of the mock object - * @param type - * the type of the mock object - * @param methodName - * The names of the methods that should be mocked. If - * null, then this method will have the same effect - * as just calling {@link #createMock(Class, Method...)} with the - * second parameter as new Method[0] (i.e. all - * methods in that class will be mocked). - * @param methodParameterTypes - * Parameter types that defines the method. Note that this is - * only needed to separate overloaded methods. - * @param constructorArguments - * The constructor arguments that will be used to invoke a - * certain constructor. (optional) + * @param the type of the mock object + * @param type the type of the mock object + * @param methodName The names of the methods that should be mocked. If + * null, then this method will have the same effect + * as just calling {@link #createMock(Class, Method...)} with the + * second parameter as new Method[0] (i.e. all + * methods in that class will be mocked). + * @param methodParameterTypes Parameter types that defines the method. Note that this is + * only needed to separate overloaded methods. + * @param constructorArguments The constructor arguments that will be used to invoke a + * certain constructor. (optional) * @return the mock object. */ public static T createStrictPartialMock(Class type, String methodName, Class[] methodParameterTypes, Object... constructorArguments) { Constructor constructor = WhiteboxImpl.findUniqueConstructorOrThrowException(type, constructorArguments); ConstructorArgs constructorArgs = new ConstructorArgs(constructor, constructorArguments); - return doMockSpecific(type, new StrictMockStrategy(), new String[] { methodName }, constructorArgs, + return doMockSpecific(type, new StrictMockStrategy(), new String[]{methodName}, constructorArgs, methodParameterTypes); } @@ -1161,29 +1007,24 @@ public static T createStrictPartialMock(Class type, String methodName, Cl * will support mocking of final and native methods and invokes a specific * constructor based on the supplied argument values. * - * @param - * the type of the mock object - * @param type - * the type of the mock object - * @param methodName - * The names of the methods that should be mocked. If - * null, then this method will have the same effect - * as just calling {@link #createMock(Class, Method...)} with the - * second parameter as new Method[0] (i.e. all - * methods in that class will be mocked). - * @param methodParameterTypes - * Parameter types that defines the method. Note that this is - * only needed to separate overloaded methods. - * @param constructorArguments - * The constructor arguments that will be used to invoke a - * certain constructor. (optional) + * @param the type of the mock object + * @param type the type of the mock object + * @param methodName The names of the methods that should be mocked. If + * null, then this method will have the same effect + * as just calling {@link #createMock(Class, Method...)} with the + * second parameter as new Method[0] (i.e. all + * methods in that class will be mocked). + * @param methodParameterTypes Parameter types that defines the method. Note that this is + * only needed to separate overloaded methods. + * @param constructorArguments The constructor arguments that will be used to invoke a + * certain constructor. (optional) * @return the mock object. */ public static T createNicePartialMock(Class type, String methodName, Class[] methodParameterTypes, Object... constructorArguments) { Constructor constructor = WhiteboxImpl.findUniqueConstructorOrThrowException(type, constructorArguments); ConstructorArgs constructorArgs = new ConstructorArgs(constructor, constructorArguments); - return doMockSpecific(type, new NiceMockStrategy(), new String[] { methodName }, constructorArgs, + return doMockSpecific(type, new NiceMockStrategy(), new String[]{methodName}, constructorArgs, methodParameterTypes); } @@ -1194,33 +1035,27 @@ public static T createNicePartialMock(Class type, String methodName, Clas * mock object created will support mocking of final and native methods and * invokes a specific constructor based on the supplied argument values. * - * @param - * the type of the mock object - * @param type - * the type of the mock object - * @param methodName - * The names of the methods that should be mocked. If - * null, then this method will have the same effect - * as just calling {@link #createMock(Class, Method...)} with the - * second parameter as new Method[0] (i.e. all - * methods in that class will be mocked). - * @param methodParameterTypes - * Parameter types that defines the method. Note that this is - * only needed to separate overloaded methods. - * @param constructorArguments - * The constructor arguments that will be used to invoke a - * certain constructor. - * @param constructorParameterTypes - * Parameter types that defines the constructor that should be - * invoked. Note that this is only needed to separate overloaded - * constructors. + * @param the type of the mock object + * @param type the type of the mock object + * @param methodName The names of the methods that should be mocked. If + * null, then this method will have the same effect + * as just calling {@link #createMock(Class, Method...)} with the + * second parameter as new Method[0] (i.e. all + * methods in that class will be mocked). + * @param methodParameterTypes Parameter types that defines the method. Note that this is + * only needed to separate overloaded methods. + * @param constructorArguments The constructor arguments that will be used to invoke a + * certain constructor. + * @param constructorParameterTypes Parameter types that defines the constructor that should be + * invoked. Note that this is only needed to separate overloaded + * constructors. * @return the mock object. */ public static T createPartialMock(Class type, String methodName, Class[] methodParameterTypes, Object[] constructorArguments, Class[] constructorParameterTypes) { ConstructorArgs constructorArgs = new ConstructorArgs(Whitebox.getConstructor(type, constructorParameterTypes), constructorArguments); - return doMockSpecific(type, new DefaultMockStrategy(), new String[] { methodName }, constructorArgs, + return doMockSpecific(type, new DefaultMockStrategy(), new String[]{methodName}, constructorArgs, methodParameterTypes); } @@ -1232,33 +1067,27 @@ public static T createPartialMock(Class type, String methodName, Class * native methods and invokes a specific constructor based on the supplied * argument values. * - * @param - * the type of the mock object - * @param type - * the type of the mock object - * @param methodName - * The names of the methods that should be mocked. If - * null, then this method will have the same effect - * as just calling {@link #createMock(Class, Method...)} with the - * second parameter as new Method[0] (i.e. all - * methods in that class will be mocked). - * @param methodParameterTypes - * Parameter types that defines the method. Note that this is - * only needed to separate overloaded methods. - * @param constructorArguments - * The constructor arguments that will be used to invoke a - * certain constructor. - * @param constructorParameterTypes - * Parameter types that defines the constructor that should be - * invoked. Note that this is only needed to separate overloaded - * constructors. + * @param the type of the mock object + * @param type the type of the mock object + * @param methodName The names of the methods that should be mocked. If + * null, then this method will have the same effect + * as just calling {@link #createMock(Class, Method...)} with the + * second parameter as new Method[0] (i.e. all + * methods in that class will be mocked). + * @param methodParameterTypes Parameter types that defines the method. Note that this is + * only needed to separate overloaded methods. + * @param constructorArguments The constructor arguments that will be used to invoke a + * certain constructor. + * @param constructorParameterTypes Parameter types that defines the constructor that should be + * invoked. Note that this is only needed to separate overloaded + * constructors. * @return the mock object. */ public static T createStrictPartialMock(Class type, String methodName, Class[] methodParameterTypes, Object[] constructorArguments, Class[] constructorParameterTypes) { ConstructorArgs constructorArgs = new ConstructorArgs(Whitebox.getConstructor(type, constructorParameterTypes), constructorArguments); - return doMockSpecific(type, new StrictMockStrategy(), new String[] { methodName }, constructorArgs, + return doMockSpecific(type, new StrictMockStrategy(), new String[]{methodName}, constructorArgs, methodParameterTypes); } @@ -1270,33 +1099,27 @@ public static T createStrictPartialMock(Class type, String methodName, Cl * native methods and invokes a specific constructor based on the supplied * argument values. * - * @param - * the type of the mock object - * @param type - * the type of the mock object - * @param methodName - * The names of the methods that should be mocked. If - * null, then this method will have the same effect - * as just calling {@link #createMock(Class, Method...)} with the - * second parameter as new Method[0] (i.e. all - * methods in that class will be mocked). - * @param methodParameterTypes - * Parameter types that defines the method. Note that this is - * only needed to separate overloaded methods. - * @param constructorArguments - * The constructor arguments that will be used to invoke a - * certain constructor. - * @param constructorParameterTypes - * Parameter types that defines the constructor that should be - * invoked. Note that this is only needed to separate overloaded - * constructors. + * @param the type of the mock object + * @param type the type of the mock object + * @param methodName The names of the methods that should be mocked. If + * null, then this method will have the same effect + * as just calling {@link #createMock(Class, Method...)} with the + * second parameter as new Method[0] (i.e. all + * methods in that class will be mocked). + * @param methodParameterTypes Parameter types that defines the method. Note that this is + * only needed to separate overloaded methods. + * @param constructorArguments The constructor arguments that will be used to invoke a + * certain constructor. + * @param constructorParameterTypes Parameter types that defines the constructor that should be + * invoked. Note that this is only needed to separate overloaded + * constructors. * @return the mock object. */ public static T createNicePartialMock(Class type, String methodName, Class[] methodParameterTypes, Object[] constructorArguments, Class[] constructorParameterTypes) { ConstructorArgs constructorArgs = new ConstructorArgs(Whitebox.getConstructor(type, constructorParameterTypes), constructorArguments); - return doMockSpecific(type, new NiceMockStrategy(), new String[] { methodName }, constructorArgs, + return doMockSpecific(type, new NiceMockStrategy(), new String[]{methodName}, constructorArgs, methodParameterTypes); } @@ -1374,7 +1197,7 @@ public static synchronized IExpectationSetters expectPrivate(Object insta * specific place in the class hierarchy (specified by the * where parameter). Works on for example private or package * private methods. - *

+ *

* Use this for overloaded methods. */ public static synchronized IExpectationSetters expectPrivate(Object instance, String methodName, @@ -1387,7 +1210,7 @@ public static synchronized IExpectationSetters expectPrivate(Object insta if (parameterTypes == null) { methods = Whitebox.getMethods(where, methodName); } else { - methods = new Method[] { Whitebox.getMethod(where, methodName, parameterTypes) }; + methods = new Method[]{Whitebox.getMethod(where, methodName, parameterTypes)}; } } Method methodToExpect; @@ -1415,9 +1238,8 @@ public static synchronized IExpectationSetters expectPrivate(Object insta * This method just delegates to EasyMock class extensions * {@link org.easymock.EasyMock#expectLastCall()} method. * - * @see org.easymock.EasyMock#expectLastCall() - * * @return The expectation setter. + * @see org.easymock.EasyMock#expectLastCall() */ public static synchronized IExpectationSetters expectLastCall() { return org.easymock.EasyMock.expectLastCall(); @@ -1450,20 +1272,19 @@ private static boolean isEasyMocked(Object mock) { * {@link #mockStatic(Class, Method...)}, * {@link #expectNew(Class, Object...)}, * {@link #createPartialMock(Class, String...)} etc. - *

+ *

* To make it easy to pass in additional mocks not created by the * PowerMock API you can optionally specify them as additionalMocks * . These are typically those mock objects you have created using pure * EasyMock or EasyMock class extensions. No additional mocks needs to be * specified if you're only using PowerMock API methods. - *

+ *

* Note that the additionalMocks are also automatically verified * when invoking the {@link #verifyAll()} method. * - * @param additionalMocks - * Mocks not created by the PowerMock API. These are typically - * those mock objects you have created using pure EasyMock or - * EasyMock class extensions. + * @param additionalMocks Mocks not created by the PowerMock API. These are typically + * those mock objects you have created using pure EasyMock or + * EasyMock class extensions. */ public static synchronized void replayAll(Object... additionalMocks) { MockRepository.addObjectsToAutomaticallyReplayAndVerify(additionalMocks); @@ -1484,17 +1305,16 @@ public static synchronized void replayAll(Object... additionalMocks) { * {@link #mockStatic(Class, Method...)}, * {@link #expectNew(Class, Object...)}, * {@link #createPartialMock(Class, String...)} etc. - *

+ *

* To make it easy to pass in additional mocks not created by the * PowerMock API you can optionally specify them as additionalMocks * . These are typically those mock objects you have created using pure * EasyMock or EasyMock class extensions. No additional mocks needs to be * specified if you're only using PowerMock API methods. * - * @param additionalMocks - * Mocks not created by the PowerMock API. These are typically - * those mock objects you have created using pure EasyMock or - * EasyMock class extensions. + * @param additionalMocks Mocks not created by the PowerMock API. These are typically + * those mock objects you have created using pure EasyMock or + * EasyMock class extensions. */ public static synchronized void resetAll(Object... additionalMocks) { MockRepository.addObjectsToAutomaticallyReplayAndVerify(additionalMocks); @@ -1575,11 +1395,10 @@ public static synchronized void reset(Object... mocks) { * {@link #mockStatic(Class, Method...)}, * {@link #expectNew(Class, Object...)}, * {@link #createPartialMock(Class, String...)} etc. - *

+ *

* Note that all additionalMocks passed to the * {@link #replayAll(Object...)} method are also verified here * automatically. - * */ public static synchronized void verifyAll() { for (Object classToReplayOrVerify : MockRepository.getObjectsToAutomaticallyReplayAndVerify()) { @@ -1591,10 +1410,8 @@ public static synchronized void verifyAll() { * Switches the mocks or classes to replay mode. Note that you must use this * method when using PowerMock! * - * @param mocks - * mock objects or classes loaded by PowerMock. - * @throws Exception - * If something unexpected goes wrong. + * @param mocks mock objects or classes loaded by PowerMock. + * @throws Exception If something unexpected goes wrong. */ public static synchronized void replay(Object... mocks) { try { @@ -1637,8 +1454,7 @@ public static synchronized void replay(Object... mocks) { * Switches the mocks or classes to verify mode. Note that you must use this * method when using PowerMock! * - * @param objects - * mock objects or classes loaded by PowerMock. + * @param objects mock objects or classes loaded by PowerMock. */ public static synchronized void verify(Object... objects) { for (Object mock : objects) { @@ -1670,10 +1486,8 @@ public static synchronized void verify(Object... objects) { /** * Convenience method for createMock followed by expectNew. * - * @param type - * The class that should be mocked. - * @param arguments - * The constructor arguments. + * @param type The class that should be mocked. + * @param arguments The constructor arguments. * @return A mock object of the same type as the mock. * @throws Exception */ @@ -1690,12 +1504,9 @@ public static synchronized T createMockAndExpectNew(Class type, Object... * taking the wrapper type of the primitive. For example int * and Integer. * - * @param type - * The class that should be mocked. - * @param parameterTypes - * The constructor parameter types. - * @param arguments - * The constructor arguments. + * @param type The class that should be mocked. + * @param parameterTypes The constructor parameter types. + * @param arguments The constructor arguments. * @return A mock object of the same type as the mock. * @throws Exception */ @@ -1709,10 +1520,8 @@ public static synchronized T createMockAndExpectNew(Class type, Class[ /** * Convenience method for createNiceMock followed by expectNew. * - * @param type - * The class that should be mocked. - * @param arguments - * The constructor arguments. + * @param type The class that should be mocked. + * @param arguments The constructor arguments. * @return A mock object of the same type as the mock. * @throws Exception */ @@ -1732,12 +1541,9 @@ public static synchronized T createNiceMockAndExpectNew(Class type, Objec * one taking the wrapper type of the primitive. For example * int and Integer. * - * @param type - * The class that should be mocked. - * @param parameterTypes - * The constructor parameter types. - * @param arguments - * The constructor arguments. + * @param type The class that should be mocked. + * @param parameterTypes The constructor parameter types. + * @param arguments The constructor arguments. * @return A mock object of the same type as the mock. * @throws Exception */ @@ -1754,10 +1560,8 @@ public static synchronized T createNiceMockAndExpectNew(Class type, Class /** * Convenience method for createStrictMock followed by expectNew. * - * @param type - * The class that should be mocked. - * @param arguments - * The constructor arguments. + * @param type The class that should be mocked. + * @param arguments The constructor arguments. * @return A mock object of the same type as the mock. * @throws Exception */ @@ -1774,12 +1578,9 @@ public static synchronized T createStrictMockAndExpectNew(Class type, Obj * one taking the wrapper type of the primitive. For example * int and Integer. * - * @param type - * The class that should be mocked. - * @param parameterTypes - * The constructor parameter types. - * @param arguments - * The constructor arguments. + * @param type The class that should be mocked. + * @param parameterTypes The constructor parameter types. + * @param arguments The constructor arguments. * @return A mock object of the same type as the mock. * @throws Exception */ @@ -1795,7 +1596,7 @@ public static synchronized T createStrictMockAndExpectNew(Class type, Cla * want to throw an exception or return a mock. Note that you must replay * the class when using this method since this behavior is part of the class * mock. - *

+ *

* Use this method when you need to specify parameter types for the * constructor when PowerMock cannot determine which constructor to use * automatically. In most cases you should use @@ -1863,11 +1664,9 @@ public static synchronized IExpectationSetters expectNew(Class type, O * class when using this method since this behavior is part of the class * mock. * - * @param fullyQualifiedName - * The fully-qualified name of the inner/local/anonymous type to - * expect. - * @param arguments - * Optional number of arguments. + * @param fullyQualifiedName The fully-qualified name of the inner/local/anonymous type to + * expect. + * @param arguments Optional number of arguments. */ @SuppressWarnings("unchecked") public static synchronized IExpectationSetters expectNew(String fullyQualifiedName, Object... arguments) @@ -1879,9 +1678,9 @@ public static synchronized IExpectationSetters expectNew(String fullyQual /** * Allows specifying expectations on new invocations. For example you might * want to throw an exception or return a mock. - *

+ *

* This method checks the order of constructor invocations. - *

+ *

* Note that you must replay the class when using this method since this * behavior is part of the class mock. */ @@ -1895,9 +1694,9 @@ public static synchronized IExpectationSetters expectStrictNew(Class t * want to throw an exception or return a mock. Note that you must replay * the class when using this method since this behavior is part of the class * mock. - *

+ *

* This method checks the order of constructor invocations. - *

+ *

* Use this method when you need to specify parameter types for the * constructor when PowerMock cannot determine which constructor to use * automatically. In most cases you should use @@ -1911,10 +1710,10 @@ public static synchronized IExpectationSetters expectStrictNew(Class t /** * Allows specifying expectations on new invocations. For example you might * want to throw an exception or return a mock. - *

+ *

* This method allows any number of calls to a new constructor without * throwing an exception. - *

+ *

* Note that you must replay the class when using this method since this * behavior is part of the class mock. */ @@ -1928,10 +1727,10 @@ public static synchronized IExpectationSetters expectNiceNew(Class typ * want to throw an exception or return a mock. Note that you must replay * the class when using this method since this behavior is part of the class * mock. - *

+ *

* This method allows any number of calls to a new constructor without * throwing an exception. - *

+ *

* Use this method when you need to specify parameter types for the * constructor when PowerMock cannot determine which constructor to use * automatically. In most cases you should use @@ -1954,10 +1753,8 @@ public static synchronized void suppressConstructor(Constructor... constructo /** * This method can be used to suppress the code in a specific constructor. * - * @param clazz - * The class where the constructor is located. - * @param parameterTypes - * The parameter types of the constructor to suppress. + * @param clazz The class where the constructor is located. + * @param parameterTypes The parameter types of the constructor to suppress. * @deprecated Use {@link #suppress(Constructor)} instead. */ public static synchronized void suppressSpecificConstructor(Class clazz, Class... parameterTypes) { @@ -1967,8 +1764,7 @@ public static synchronized void suppressSpecificConstructor(Class clazz, Clas /** * Suppress all constructors in the given class and it's super classes. * - * @param classes - * The classes whose constructors will be suppressed. + * @param classes The classes whose constructors will be suppressed. * @deprecated Use {@link #suppress(Constructor[])} instead. */ public static synchronized void suppressConstructor(Class... classes) { @@ -1978,10 +1774,8 @@ public static synchronized void suppressConstructor(Class... classes) { /** * Suppress all constructors in the given class. * - * @param clazz - * The classes whose constructors will be suppressed. - * @param excludePrivateConstructors - * optionally keep code in private constructors + * @param clazz The classes whose constructors will be suppressed. + * @param excludePrivateConstructors optionally keep code in private constructors * @deprecated Use {@link #suppress(Constructor[])} instead. */ public static synchronized void suppressConstructor(Class clazz, boolean excludePrivateConstructors) { @@ -2011,12 +1805,10 @@ public static synchronized void suppressField(Class[] classes) { /** * Suppress multiple methods for a class. * - * @param clazz - * The class whose methods will be suppressed. - * @param fieldNames - * The names of the methods that'll be suppressed. If field names - * are empty, all fields in the supplied class will be - * suppressed. + * @param clazz The class whose methods will be suppressed. + * @param fieldNames The names of the methods that'll be suppressed. If field names + * are empty, all fields in the supplied class will be + * suppressed. * @deprecated Use {@link #suppress(Field)} instead. */ public static synchronized void suppressField(Class clazz, String... fieldNames) { @@ -2037,10 +1829,8 @@ public static synchronized void suppressMethod(Method... methods) { /** * Suppress all methods for these classes. * - * @param cls - * The first class whose methods will be suppressed. - * @param additionalClasses - * Additional classes whose methods will be suppressed. + * @param cls The first class whose methods will be suppressed. + * @param additionalClasses Additional classes whose methods will be suppressed. * @deprecated Use {@link #suppress(Method[])} instead. */ public static synchronized void suppressMethod(Class cls, Class... additionalClasses) { @@ -2050,8 +1840,7 @@ public static synchronized void suppressMethod(Class cls, Class... additio /** * Suppress all methods for these classes. * - * @param classes - * Classes whose methods will be suppressed. + * @param classes Classes whose methods will be suppressed. * @deprecated Use {@link #suppress(Method[])} instead. */ public static synchronized void suppressMethod(Class[] classes) { @@ -2061,12 +1850,9 @@ public static synchronized void suppressMethod(Class[] classes) { /** * Suppress multiple methods for a class. * - * @param clazz - * The class whose methods will be suppressed. - * @param methodName - * The first method to be suppress in class clazz. - * @param additionalMethodNames - * Additional methods to suppress in class clazz. + * @param clazz The class whose methods will be suppressed. + * @param methodName The first method to be suppress in class clazz. + * @param additionalMethodNames Additional methods to suppress in class clazz. * @deprecated Use {@link #suppress(Method[])} instead. */ public static synchronized void suppressMethod(Class clazz, String methodName, String... additionalMethodNames) { @@ -2076,10 +1862,8 @@ public static synchronized void suppressMethod(Class clazz, String methodName /** * Suppress multiple methods for a class. * - * @param clazz - * The class whose methods will be suppressed. - * @param methodNames - * Methods to suppress in class clazz. + * @param clazz The class whose methods will be suppressed. + * @param methodNames Methods to suppress in class clazz. * @deprecated Use {@link #suppress(Method[])} instead. */ public static synchronized void suppressMethod(Class clazz, String[] methodNames) { @@ -2089,10 +1873,8 @@ public static synchronized void suppressMethod(Class clazz, String[] methodNa /** * Suppress all methods for this class. * - * @param clazz - * The class which methods will be suppressed. - * @param excludePrivateMethods - * optionally not suppress private methods + * @param clazz The class which methods will be suppressed. + * @param excludePrivateMethods optionally not suppress private methods * @deprecated Use {@link #suppress(Method[])} instead. */ public static synchronized void suppressMethod(Class clazz, boolean excludePrivateMethods) { @@ -2126,7 +1908,7 @@ public void run() { IMocksControl control = mockStrategy.createMockControl(type); MockRepository.addAfterMethodRunner(new EasyMockStateCleaner()); - T mock = null; + T mock; if (type.isInterface()) { mock = control.createMock(type); } else if (type.getName().startsWith("java.") && Modifier.isFinal(type.getModifiers())) { @@ -2175,6 +1957,10 @@ public void run() { MockRepository.addObjectsToAutomaticallyReplayAndVerify(mock); } } + ClassLoader classLoader = mock.getClass().getClassLoader(); + if (classLoader instanceof MockClassLoader) { + ((MockClassLoader) classLoader).cache(mock.getClass()); + } return mock; } @@ -2298,33 +2084,29 @@ public void run() { } private void clearStateFromOtherClassLoaders() { - for(ClassLoader cl : classloadersToClear()) - { - try { - final Class lastControlClassByCL = Class.forName(LastControl.class.getName(), false, cl); - final Class mocksControlClassByCL = Class.forName(MocksControl.class.getName(), false, cl); - final Method reportLastControl = lastControlClassByCL.getMethod("reportLastControl", mocksControlClassByCL); - reportLastControl.invoke(lastControlClassByCL, new Object[]{null}); - } catch (Exception e) { - // Should never happen - throw new RuntimeException("Failed to clean up state", e); - - } + for (ClassLoader cl : classloadersToClear()) { + try { + final Class lastControlClassByCL = Class.forName(LastControl.class.getName(), false, cl); + final Class mocksControlClassByCL = Class.forName(MocksControl.class.getName(), false, cl); + final Method reportLastControl = lastControlClassByCL.getMethod("reportLastControl", mocksControlClassByCL); + reportLastControl.invoke(lastControlClassByCL, new Object[]{null}); + } catch (Exception e) { + // Should never happen + throw new RuntimeException("Failed to clean up state", e); + + } } } - - private Iterable classloadersToClear() - { + + private Iterable classloadersToClear() { List loaders = new ArrayList(); final ClassLoader systemClassLoader = ClassLoader.getSystemClassLoader(); final ClassLoader contextClassLoader = Thread.currentThread().getContextClassLoader(); - if(classFoundInClassloader(LastControl.class, systemClassLoader)) - { - loaders.add(systemClassLoader); + if (classFoundInClassloader(LastControl.class, systemClassLoader)) { + loaders.add(systemClassLoader); } - if(classFoundInClassloader(LastControl.class, contextClassLoader)) - { - loaders.add(contextClassLoader); + if (classFoundInClassloader(LastControl.class, contextClassLoader)) { + loaders.add(contextClassLoader); } return loaders; } diff --git a/changelog.txt b/changelog.txt index 7fdf4457a..5c0dfbd4c 100644 --- a/changelog.txt +++ b/changelog.txt @@ -5,7 +5,7 @@ Change log next version * Upgraded Javassist dependency to version 3.20.0-GA. * Using soft reference in classloader cache * MockClassloader now extends Javassist Loader classloader to implement findClass etc -* PowerMockito now works with ByteBuddy (issue 579) +* PowerMock now works better with ByteBuddy (issue 579) Change log 1.6.2 (2015-01-03) ---------------------------- diff --git a/examples/byte-buddy-easymock/pom.xml b/examples/byte-buddy-easymock/pom.xml new file mode 100644 index 000000000..9333e527d --- /dev/null +++ b/examples/byte-buddy-easymock/pom.xml @@ -0,0 +1,40 @@ + + + 4.0.0 + + org.powermock.examples + powermock-examples + 1.6.3-SNAPSHOT + + + powermock-examples-byte-buddy-easymock + ${project.artifactId} + + + Example demonstrating that PowerMock EasyMock API and Byte Buddy works together. + + + + + net.bytebuddy + byte-buddy + 0.6.15 + + + org.powermock + powermock-api-easymock + ${project.version} + + + org.powermock + powermock-module-junit4 + ${project.version} + test + + + org.easymock + easymock + test + + + diff --git a/examples/byte-buddy-easymock/src/main/java/powermock/examples/bytebuddy/easymock/SampleClass.java b/examples/byte-buddy-easymock/src/main/java/powermock/examples/bytebuddy/easymock/SampleClass.java new file mode 100644 index 000000000..247138546 --- /dev/null +++ b/examples/byte-buddy-easymock/src/main/java/powermock/examples/bytebuddy/easymock/SampleClass.java @@ -0,0 +1,20 @@ +/* + * Copyright 2015 the original author or authors. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package powermock.examples.bytebuddy.easymock; + +public class SampleClass { +} \ No newline at end of file diff --git a/examples/byte-buddy/src/test/java/powermock/examples/bytebuddy/ByteBuddyWithPowerMockTest.java b/examples/byte-buddy-easymock/src/test/java/powermock/examples/bytebuddy/easymock/ByteBuddyWithPowerMockTest.java similarity index 79% rename from examples/byte-buddy/src/test/java/powermock/examples/bytebuddy/ByteBuddyWithPowerMockTest.java rename to examples/byte-buddy-easymock/src/test/java/powermock/examples/bytebuddy/easymock/ByteBuddyWithPowerMockTest.java index 565d39e92..86858f378 100644 --- a/examples/byte-buddy/src/test/java/powermock/examples/bytebuddy/ByteBuddyWithPowerMockTest.java +++ b/examples/byte-buddy-easymock/src/test/java/powermock/examples/bytebuddy/easymock/ByteBuddyWithPowerMockTest.java @@ -19,42 +19,36 @@ import net.bytebuddy.ByteBuddy; import net.bytebuddy.dynamic.loading.ClassLoadingStrategy; import org.junit.After; +import org.junit.Ignore; import org.junit.Test; import org.junit.runner.RunWith; -import org.mockito.Mock; -import org.powermock.api.mockito.PowerMockito; +import org.powermock.api.easymock.PowerMock; import org.powermock.core.classloader.MockClassLoader; import org.powermock.core.classloader.annotations.PrepareForTest; import org.powermock.modules.junit4.PowerMockRunner; import org.powermock.reflect.Whitebox; +import powermock.examples.bytebuddy.easymock.SampleClass; import java.util.Map; +import static org.easymock.EasyMock.createMock; import static org.hamcrest.CoreMatchers.containsString; import static org.junit.Assert.assertThat; -import static org.mockito.Mockito.mock; @RunWith(PowerMockRunner.class) @PrepareForTest(SampleClass.class) public class ByteBuddyWithPowerMockTest { - @Mock - private SampleClass sample; - - @Test - public void assertThatPowerMockAndByteBuddyWorksTogetherWhenCallingMockFromMockito() throws Exception { - SampleClass sample = mock(SampleClass.class); - assertThat(proxy(sample).getClass().getName(), containsString("$ByteBuddy$")); - } - @Test - public void assertThatPowerMockAndByteBuddyWorksTogetherWhenCallingMockFromPowerMockito() throws Exception { - SampleClass sample = PowerMockito.mock(SampleClass.class); + @Ignore("Unfortunately this doesn't work") + public void assertThatPowerMockAndByteBuddyWorksTogetherWhenCallingMockFromEasyMock() throws Exception { + SampleClass sample = createMock(SampleClass.class); assertThat(proxy(sample).getClass().getName(), containsString("$ByteBuddy$")); } @Test - public void assertThatPowerMockAndByteBuddyWorksTogetherWhenMockIsInjected() throws Exception { + public void assertThatPowerMockAndByteBuddyWorksTogetherWhenCallingMockFromPowerMock() throws Exception { + SampleClass sample = PowerMock.createMock(SampleClass.class); assertThat(proxy(sample).getClass().getName(), containsString("$ByteBuddy$")); } diff --git a/examples/byte-buddy/pom.xml b/examples/byte-buddy-mockito/pom.xml similarity index 95% rename from examples/byte-buddy/pom.xml rename to examples/byte-buddy-mockito/pom.xml index a66097ecd..b877a8ca3 100644 --- a/examples/byte-buddy/pom.xml +++ b/examples/byte-buddy-mockito/pom.xml @@ -7,7 +7,7 @@ 1.6.3-SNAPSHOT - powermock-examples-byte-buddy + powermock-examples-byte-buddy-mockito ${project.artifactId} diff --git a/examples/byte-buddy/src/main/java/powermock/examples/bytebuddy/SampleClass.java b/examples/byte-buddy-mockito/src/main/java/powermock/examples/bytebuddy/mockito/SampleClass.java similarity index 93% rename from examples/byte-buddy/src/main/java/powermock/examples/bytebuddy/SampleClass.java rename to examples/byte-buddy-mockito/src/main/java/powermock/examples/bytebuddy/mockito/SampleClass.java index 6319b9996..945e9d21c 100644 --- a/examples/byte-buddy/src/main/java/powermock/examples/bytebuddy/SampleClass.java +++ b/examples/byte-buddy-mockito/src/main/java/powermock/examples/bytebuddy/mockito/SampleClass.java @@ -14,7 +14,7 @@ * limitations under the License. */ -package powermock.examples.bytebuddy; +package powermock.examples.bytebuddy.mockito; public class SampleClass { } \ No newline at end of file diff --git a/examples/byte-buddy-mockito/src/test/java/powermock/examples/bytebuddy/mockito/ByteBuddyWithPowerMockitoTest.java b/examples/byte-buddy-mockito/src/test/java/powermock/examples/bytebuddy/mockito/ByteBuddyWithPowerMockitoTest.java new file mode 100644 index 000000000..99082c22f --- /dev/null +++ b/examples/byte-buddy-mockito/src/test/java/powermock/examples/bytebuddy/mockito/ByteBuddyWithPowerMockitoTest.java @@ -0,0 +1,76 @@ +/* + * Copyright 2015 the original author or authors. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package powermock.examples.bytebuddy.mockito; + +import net.bytebuddy.ByteBuddy; +import net.bytebuddy.dynamic.loading.ClassLoadingStrategy; +import org.junit.After; +import org.junit.Test; +import org.junit.runner.RunWith; +import org.mockito.Mock; +import org.powermock.api.mockito.PowerMockito; +import org.powermock.core.classloader.MockClassLoader; +import org.powermock.core.classloader.annotations.PrepareForTest; +import org.powermock.modules.junit4.PowerMockRunner; +import org.powermock.reflect.Whitebox; +import powermock.examples.bytebuddy.mockito.SampleClass; + +import java.util.Map; + +import static org.hamcrest.CoreMatchers.containsString; +import static org.junit.Assert.assertThat; +import static org.mockito.Mockito.mock; + +@RunWith(PowerMockRunner.class) +@PrepareForTest(SampleClass.class) +public class ByteBuddyWithPowerMockitoTest { + + @Mock + private SampleClass sample; + + @Test + public void assertThatPowerMockAndByteBuddyWorksTogetherWhenCallingMockFromMockito() throws Exception { + SampleClass sample = mock(SampleClass.class); + assertThat(proxy(sample).getClass().getName(), containsString("$ByteBuddy$")); + } + + @Test + public void assertThatPowerMockAndByteBuddyWorksTogetherWhenCallingMockFromPowerMockito() throws Exception { + SampleClass sample = PowerMockito.mock(SampleClass.class); + assertThat(proxy(sample).getClass().getName(), containsString("$ByteBuddy$")); + } + + @Test + public void assertThatPowerMockAndByteBuddyWorksTogetherWhenMockIsInjected() throws Exception { + assertThat(proxy(sample).getClass().getName(), containsString("$ByteBuddy$")); + } + + @After public void + clearPowerMockClassCacheAfterEachTest() { + MockClassLoader mcl = (MockClassLoader) SampleClass.class.getClassLoader(); + Whitebox.getInternalState(mcl, Map.class).clear(); + } + + private static SampleClass proxy(SampleClass sample) + throws IllegalAccessException, InstantiationException { + return new ByteBuddy() + .subclass(sample.getClass()) + .make() + .load(sample.getClass().getClassLoader(), ClassLoadingStrategy.Default.WRAPPER) + .getLoaded().newInstance(); + } +} \ No newline at end of file diff --git a/examples/pom.xml b/examples/pom.xml index 22e3b2232..cb4f263f4 100644 --- a/examples/pom.xml +++ b/examples/pom.xml @@ -39,7 +39,8 @@ spring-mockito-xml-agent spring-mockito-xml java8 - byte-buddy + byte-buddy-mockito + byte-buddy-easymock