Tagged Questions

7
votes
4answers
1k views

Attempt to stub android Activity class using PowerMockito throws RuntimeException “Stub!”

I found this example where they used PowerMock and EasyMock to stub/mock the Menu and MenuItem classes for android. I have been trying to do something similar with PowerMock and Mockito with the ...
4
votes
3answers
379 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
4answers
474 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
29 views

Profiling JUnit tests with PowerMock?

We have a couple of very very slow JUnit tests that make heavy use of mocking, including Mocking of static functions. Single Tests take 20-30 secs, the whole "mvn test" takes 25 minutes. I want to ...
2
votes
1answer
101 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
2answers
615 views

PowerMock testing - set static field of class

I'm having difficulty finding a way to set a static field of a class. It's basically like this: public class Foo { // .... static B b = null; } where B is another class. Is there any way ...
1
vote
1answer
57 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
4answers
236 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
215 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
2answers
195 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
3answers
172 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
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
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
769 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
34 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
25 views

PowerMokito doNothing() on private setter NullPointer

Issue: Nullpointer exception thrown when attempting to execute PowerMockito.doNothing(). I need to create a partialMockObject class that will return a private method value and do nothing for another ...
0
votes
1answer
59 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
42 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
58 views

Using 'stub' correctly

I'm trying to test a method which calls a couple of other methods in the class. I'd like the other methods to be stubbed out so they don't get executed. I had thought it was a simple matter of using ...
0
votes
1answer
253 views

GWT test with PowerMock and PowerMockito

I have a constructor: public PodLinksActivity( PodLinksPlace place ){ super( MFactory.getView(), place); // other methods } how can I stub the MFactory.getView() static method with ...
0
votes
1answer
531 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
159 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
580 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
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
1answer
626 views

Powermock and problem loading jar file file during unit test with JUnit 4 in eclipse

I am using powermock 1.2.5 to perform a class that saves data into Oracle database. When I run my test my unit test fails with the following exception: NoSuchAlgorithmException : DES Algorithm can ...
0
votes
2answers
362 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 ...