Tagged Questions

7
votes
1answer
210 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 ...
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
1answer
137 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
195 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
3answers
440 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 ...
2
votes
1answer
927 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
160 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
2answers
159 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
383 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
333 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
172 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
2answers
298 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
548 views

PowerMock + Mockito VS Mockito alone

Can anyone please summarize, what exactly features gives you adding PowerMock on top of the Mockito? So far I've found these: mock static, final and private methods remove static initializers allow ...
1
vote
1answer
424 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
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 ...
0
votes
1answer
19 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
1answer
42 views

How do I use PowerMock / Mockito / EasyMock to use a mocked object for dependency injection?

I have an AuthenticationManager.authenticate(username,password) method that gets called in someMethod of a SomeService under test. The AuthenticationManager is injected into SomeService: @Component ...
0
votes
1answer
78 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
2answers
243 views

Android + Powermock + Mockito + Maven build error with ClassNotFoundException

I´m facing a strange build problem with powermock and mockito using maven. I can perfectly run the tests wihtin ecplise (wihtout using maven). But when i try to run the test with maven from cli or on ...
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
142 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
308 views

How do I use Powermockito to mock the construction of new objects when testing a method in an anonymous class?

I woud like to write a JUnit test to verify that the code below uses a BufferedInputStream: public static final FilterFactory BZIP2_FACTORY = new FilterFactory() { public InputStream ...
0
votes
1answer
195 views

Unit testing : mocking a factory method using mockito or powermock

I have a class with the following structure public class MyClass{ private MyClass(){ } public static MyClass getInstance(){ return new MyClass(); } //some instance method. } ...
0
votes
1answer
161 views

Does it exists a Mockito equivalent way to expect constructor invocations like PowerMock.expectNew?

If it doesn't, does it exist on EasyMock? Thanks.
0
votes
1answer
177 views

Use doReturn to partially mock static method with PowerMockito

How to I use the doReturn pattern in PowerMockito to mock a static method when I can't use Mockito.when()? I want to test the following static method: public static PrintWriter openWriter(File file, ...
0
votes
1answer
295 views

Powermock newbie/NoClassDefFoundError when mocking Apache DefaultHttpClient

I'm new to object mocking, and trying to create unit tests for some legacy code. I'm trying to use powermock for the first time, and encountering a NoClassDefFoundError on line 69 ( ...
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
269 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
2answers
542 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( { ...