Tagged Questions

7
votes
1answer
212 views

java.lang.LinkageError: ClassCastException

I do experience a really annoying problem with TestNG and RESTeasy. I do have a class that runs several tests against an API class which uses the RESTeasy framework to expose itself. However if I ...
4
votes
1answer
140 views

mocking protected method

I want to mock an inherited protected method. I can't call this method directly from java code as it is inherited from class that in another package. I can't find a way to specify this method to stub ...
4
votes
3answers
198 views

Mockito spy returns different result than actual method call

I have the following code: public Object parse(){ .... VTDGen vg = new VTDGen(); boolean parsed = vg.parseFile(myFile.getAbsolutePath(), false); } I am writing a unit test for ...
4
votes
1answer
194 views

Mocking Static Methods

As i did some research i have found out that PowerMock is able to mock static java methods. Can someone explain (technically) what is PowerMock doing different than JUnit and others which can not ...
4
votes
3answers
443 views

Testing code which calls native methods

I have a class like this: public final class Foo { public native int getBar(); public String toString() { return "Bar: " + getBar(); } } Please note that getBar() is ...
3
votes
3answers
156 views

suppress a singleton constructor in java with powermock

I'm trying to unit-test some classes that make use of a Singleton class whose constructor does some things I can't (and shouldn't) do from the unit-test environment. My ideal scenario would be to end ...
3
votes
1answer
125 views

createPartialMock with MocksControl

I have a StrictPartialMock (created with createStrictPartialMock(class, "method1")). and a normal mockedObject. I want to test if method1() calls StrictPartialMock.method2(), mockedObject.method1(), ...
3
votes
2answers
603 views

PowerMock: java.lang.IllegalAccessError: java.lang.Class when mocking java.util.ServiceLoader

I am trying to mock the java ServicesLoader (which is final) in my tests with PowerMock, and it seems to fail... The simplest test case that reproduces the error is this: import ...
3
votes
4answers
562 views

NoClassDefFoundError when using Powermock

I'm running a junit test case using the PowerMock test runner. I'm using the following command line to execute it: java -cp .:junit-4.9b2.jar:easymock-3.0.jar:powermock-easymock-1.4.8-full.jar ...
2
votes
1answer
149 views

How to test with PowerMock a method which calls another private void method from the same class?

I have a class which have some methods like in the example. public class TestClass { public boolean aMethod() { voidMethod(); return true; } private void ...
2
votes
1answer
933 views

Mockito/PowerMock: how to reset a mocked static variable in SUT?

I hate to introduce Unit-tests into a legacy code base, but I have to. Up untill now I successfully introduced unit-testing into the legacy code base using Mockito and PowerMock. Worked perfectly ...
2
votes
0answers
1k views

PowerMock, mockito, verify static method

I'm trying to get PowerMock to work with mockito, and I'm following the documentation here: http://code.google.com/p/powermock/wiki/MockitoUsage13. To simplify a bit, lets say that I have a static ...
2
votes
1answer
2k views

PowerMock Mockito: how to mock all static methods?

Do we need to mock all static methods of a class when using PowerMock (with Mockito)? I mean, suppose we have: class MockMe { public static MockMe getInstance(){ //return new ...
1
vote
2answers
166 views

Mocking Logger and LoggerFactory with PowerMock and Mockito

I have the following Logger I want to mock out, but to validate log entries are getting called, not for the content. private static Logger logger = ...
1
vote
1answer
67 views

Can PowerMock be used without annotations?

I'm trying to use PowerMock as a library in another application. Is there a way to use it to mock a static method call without using annotations (I'm in Clojure which doesn't really do annotations)
1
vote
2answers
160 views

mocking abstract classes [closed]

Possible Duplicate: Using Mockito to test abstract classes I have an abstract class with functionality I need to test. I could create simple derivative of that class with no op ...
1
vote
4answers
395 views

When mocking private method with PowerMock, but underlying method still gets called

I am trying to mocking to mock out a private method that makes a JNDI call. When that method gets called from a unit test, it throws an exception^. I would like to mock-out that method for testing ...
1
vote
2answers
339 views

How to mock private method for testing using PowerMock?

I have a class which I would like to test with a public method that calls private one. I'd like to assume that private method works correctly. For example, I'd like something like doReturn....when.... ...
1
vote
0answers
174 views

How to reset PowerMockito.whenNew() behavior?

This is what I'm doing: PowerMockito.mockStatic(Foo.class); PowerMockito.whenNew(Foo.class).withNoArguments().thenReturn(null); Foo foo1 = new Foo(); assert foo1 == null; // works fine //... // now I ...
1
vote
1answer
202 views

Got ExceptionInInitializerError when mocking constructor of a class with Powermock. How to fix it?

Here is my case. I have a AbstractController class. It has a sub class Controller. In one of AbstractController's methods a new ApplicationLock is instantiated. I'd like to mock ApplicationLock when ...
1
vote
2answers
302 views

How to mock a void static method to throw exception with Powermock?

I am trying to use Powermock and Mockito to mock a void static method to throw exception as below. But I met a problem. Unless I make the two invocations of Adder.add() with the same argument, the ...
1
vote
1answer
338 views

Testing private method using power mock which return list of Integers

I have a private method which take a list of integer value returns me a list of integer value. How can i use power mock to test it. I am new to powermock.Can i do the test with easy mock..? how..
1
vote
2answers
217 views

JUnit setUp gets invoked TWO times with one test and messing up Powermock expectNew

Very strange behaviour in my test. public class MyTestclass { @Before void setUp(){ //do some setup, but hu i get called twice //here i do some try catch thing to get the ...
1
vote
1answer
425 views

Is this possible in Mockito: when(SomeClass.getIntance()).thenReturn(myMock)?

I'm working with some legacy code, where I have to implement a new Handler. And in this handler, there's an object which is unfortunately initialized by the framework using some hard-coded property ...
1
vote
3answers
183 views

Is there any way to replace dynamic methods?

Let's say we have an interface which has two methods: public interface MyInterface { public SomeType first(); public SomeType second(); } This interface is implemented by MyInterfaceImpl. ...
1
vote
1answer
133 views

java.lang.VerifyError when mocking Swing static methods

I am using PowerMock to mock static methods on JOptionPane, but the JRE doesn't seem to be very conform with it, because I get a java.lang.VerifyError at initialisation, as it checks the integrity of ...
1
vote
2answers
1k views

How to mock object with constructor that takes a Class?

This is the test: import static junit.framework.Assert.assertTrue; import static org.powermock.api.mockito.PowerMockito.mock; import static org.powermock.api.mockito.PowerMockito.whenNew; import ...
1
vote
1answer
1k views

Mocking both static and dynamic methods with PowerMock

Let's say we have public class Foo { public static Foo getInstance() {...} public Bar bar(Baz baz) {...} } What I want to do is to mock it in my unit tests. I need to mock both static and ...
1
vote
1answer
63 views

testing the class that returns the service using powermock?

I want to test certain underlying services using powermock. but it is complicated. i would like to get your suggestion public interface service{ public void some_method(){ } } public ...
1
vote
2answers
804 views

Junit Parameterized tests together with Powermock - how?

I've been trying to figure out how to run parameterized tests in Junit4 together with PowerMock. The problem is that to use PowerMock you need to decorate your test class with ...
0
votes
1answer
22 views

Using PowerMock to obtain the ATG Nucleus in testing results in NPE

I am trying to test the following bit of code: GSARepository productCatalog = (GSARepository) Nucleus.getGlobalNucleus().resolveName("/atg/commerce/catalog/ProductCatalog"); for (RepositoryItem ...
0
votes
0answers
41 views

Running Powermock suite with Ant results in ClassCastExceptions

The test suit is running just fine in eclipse. However, when we try to run the suit with ANT it throws the following error: Warning: Caught exception attempting to use SAX to load a SAX XMLReader ...
0
votes
1answer
67 views

PowerMock EasyMock Fundamentals

This one is probably a PowerMock/EasyMock 101 question which I cannot figure out why. I have a class C with methods public static boolean testInner(String s) { return false; } public static ...
0
votes
1answer
81 views

ClassNotFound Error when using mockito to mock a class

I am trying to mock a class using Mockito and also using PowerMock. This is the test @RunWith(PowerMockRunner.class) @PrepareForTest(value = Util.class) public final class FSNS_MLFTUnitTests { ...
0
votes
1answer
79 views

junit reload classes

I use powermock to mock Logger.getInstance() method. This causes a problem as junit seems not to reload classes and after the first test test class has wrong logger instance. public class LoggedClass ...
0
votes
1answer
36 views

powermock inorder

I use PowerMock to mock static methods. I need to verify order of static and non static method calls. Is it possible to do using PowerMock? UPD I use powermockito extension to mock static methods, ...
0
votes
1answer
58 views

How to obtain a reference to a Runnable instance passed to a Thread constructor using PowerMock(ito)?

There's a black box class which creates a Thread using its constructor accepting an instance of Runnable as the argument: public class Service { public static Task implements Runnable { ...
0
votes
1answer
144 views

Getting Mockito and Powermock to throw error correctly

I have the following code @PrepareForTest({Mongo.class, XYMongo.class, DB.class}) public class XYMongoTest extends UnitTest{ String host = Play.configuration.getProperty("mongo.host"); int port = ...
0
votes
1answer
66 views

PowerMock MethodNotFoundException on verifyPrivate with method accepting Class

PowerMock throws org.powermock.reflect.exceptions.MethodNotFoundException: No methods matching the name(s) methodInsideFoo were found in the class hierarchy of class com.something.Something.. Test ...
0
votes
1answer
580 views

EasyMock / PowerMock import question

I'm experiencing some problems I can't quite figure out, and one site I found suggested a problem with incompatibilities with verify() if the mocks were created with PowerMock. When I type a line to ...
0
votes
1answer
170 views

Powermock jcuda testing

If I want to mock the JCuda static method JCudaDriver.cuMemcpyHtoD(jcuda.driver.CUdeviceptr, jcuda.Pointer, long) using PowerMock: mockStaticPartial(JCudaDriver.class, "cuMemcpyHtoD", ...
0
votes
1answer
646 views

Need some help with some basic PowerMock / EasyMock problems

I'm relatively new to the world of PowerMock / EasyMock, and something I thought should be relatively straight-forward just isn't working. Perhaps someone can show me where I'm going wrong. Consider ...
0
votes
2answers
544 views

PowerMock: mocking of static methods (+ return original values in some particular methods)

I use PowerMock 1.4.7 and JUnit 4.8.2 I need to mock only some static methods and I want others (from the same class) just to return original value. When I mock with mockStatic and don't call ...
0
votes
4answers
2k views

Running Junit & PowerMock with Mockito through PowerMockRunner from maven

I am not being able to run Powermock through maven. I'm the PowerMock Mockito and PowerMockRunner for driving a jUnit test. Here's the test: @RunWith(PowerMockRunner.class) @PrepareForTest( { ...
0
votes
2answers
368 views

Powermock Slows Down Test Startup on Eclipse/Fedora 10 when on NTFS partition

I've just started having a proper play with Powermock and noticed that it slows down test startup immensely. A quick look at top while it was running shows that mount.nfts-3g was taking up most of ...