PowerMock is a Java library for creating mock objects for classes and methods that other similar libraries refuse to handle.

learn more… | top users | synonyms

1
vote
0answers
30 views

How to unit-test Page Objects in a Selenium framework with PowerMock

I'm working an automation framework built on Selenium 2 and based on the Page Object design pattern. I am at the point where I want to start thinking about writing test suites for my code. Due to ...
0
votes
2answers
34 views

Akka akka-testkit PowerMockito.spy does not work for underlying actor [closed]

I created new question And this one I'm going to delete. Because I believe I was not clear about what I wanted while asking. And because there are too many comments that stop people help me or stop ...
0
votes
1answer
36 views

PowerMockito cannot mock constructor for FileInputStream

I am trying to mock the constructor for the FileInputStream and I have the following code: @RunWith(PowerMockRunner.class) @PrepareForTest(FileInputStream.class) public class DBUtilsTest { ...
0
votes
0answers
18 views

Play 2 - Tests NOT run when annotated with PowerMockRunner

We are facing a weird issue with Play framework and PowerMockRunner combination. As you can see the below example is a dummy one to simulate the issue. JUnit Test Using PowerMockRunner package ...
0
votes
0answers
34 views

Mockito + PowerMock LinkageError while mocking system class

I've got such a code snippet: @RunWith(PowerMockRunner.class) @PrepareForTest({Thread.class}) public class AllMeasuresDataTest { @Before public void setUp() throws Exception { } @Test public void ...
0
votes
1answer
28 views

Powermock verify private static method call in non static method

Dear stackoverflow comrades, I again have a problem in getting a specific PowerMock / Mockito case to work. The issue is, that I need to verify the call of a private static method, which is called ...
0
votes
2answers
67 views

How to suppress and verify private static method calls?

I am currently stumbling in JUnit testing and need some help. So I got this class with static methods which will refactor some objects. For simplification's sake I have made a small example. This is ...
0
votes
0answers
26 views

How can I create dynamic proxy for final Class?

In short: 1. I have some final class that I want to create dynamic proxy for it. How can I do it? 2. Can I convert MethodHandle to Method? Details First of all, does exists any API to convert ...
0
votes
1answer
39 views

Junit Interface Powermock

Edited: Rewrote the question in a shorter way. Thanks for pointing this out! :) I need to write JUnit tests where I have to mock a couple of private methods and fields with no setter/getter. I tried ...
1
vote
2answers
38 views

PowerMockito: how to mock methods called by the constructor?

I have the following class: public class Foo { public Foo() { initField1(); initField2(); initField3(); } } I need to change the behaviour (to mock) initField1() and ...
0
votes
0answers
25 views

PowerMockito's mockStatic can only run with one invocation?

I’m having this wired problem not sure if you saw this before or not. Here’s a simple code to demo the problem: import org.mockito.Mockito; import org.powermock.api.mockito.PowerMockito; import ...
-1
votes
1answer
22 views

PowerMock and EasyMock

Is there a good reference material or links where one can find good resource for jUnit, PowerMock and EasyMock. Though good amount of information is available on the net , but is there a single point ...
0
votes
0answers
37 views

PowerMock ClassCastException when trying to run tests with the PowerMockRunner

Just Adding the following dependencies to my Android maven project: <dependency> <groupId>org.powermock</groupId> ...
2
votes
0answers
58 views

Mocking Static Methods with PowerMockito on Android

I'm trying to stub out a static method so that I can unit test a REST Api interface. I'm using... PowerMockito 1.5 (to enable mocking of statics) Roboelectric 1.2 (to stub out the rest of the ...
2
votes
0answers
64 views

Why ErrorCollector with PowerMockRunner doesn't work?

I've tried to use ErrorCollector in project. At start it works. All errors are collected, but at the end when the list of errors should be printed, something throws MultipleFailureException at ...
0
votes
0answers
13 views

mock TZSRecurrence class

Below is the code. I am writing jUnit Test Case for below code. I am unable to mock TZSRecurrence. I am using powerMockito. TZSRecurrence recurrence; Calendar recStartCal = (Calendar) ...
1
vote
1answer
53 views

PowerMockRunner causes ExceptionInInitializerError when running trivial test

I cannot run a very simple test class using the Powermock test runnner. It causes an ExceptionInInitializerError. It looks to be a problem with the dependencies on the classpath, however, I have ...
0
votes
2answers
45 views

Is there any tool that automates stubbing mock object responses? (using jmock, mockito or easy mock)

Question: Is there any tool that automates stubbing or mock object responses (using jmock, mockito or easy mock)? I have to write unit tests against a method that has dependencies on Amazon AWS ...
0
votes
1answer
36 views

How to expect the creation of an array with PowerMock

I'm currently trying to test a method that creates an array of objects, and then executes a method on a object with the array of objects as the parameter. Everytime I try to do it, I keep getting a ...
2
votes
2answers
77 views

Is it possible to mock a single method in an already existing object?

For an integration test, I need to mock a specific method in a java service client without destroying the rest of the information in it. It has no self-constructor, so a solution like this is out of ...
0
votes
1answer
19 views

PowerMock / EasyMock for JMX ManagementFactory

I need to mock following code: final MBeanServer mbs = ManagementFactory.getPlatformMBeanServer(); mbs.registerMBean(testMBean, new ObjectName("testObjectName"); I am usign PowerMock to mock ...
3
votes
2answers
57 views

Is it possible to use PowerMock to mock new file creation?

I want to cover a logic, that creates files with unit tests. Is it possible to mock File class and to avoid actual file creation?
0
votes
1answer
67 views

EasyMock mocked method call is returning null when called for the second time after resetting mock object

This is my first post in Stackoverflow, so far I have been the active reader of this forum and I am posting my first question here. This is regarding the EasyMock usage, I am a new user of EasyMock ...
0
votes
0answers
27 views

Performance impact of PowerMockito

We had the following pattern and it had dramatic impact on test-execution time. I want to understand why. @RunWith(PowerMockRunner.class) @PrepareForTest(SomeSingleton.class) public class SomeTest { ...
1
vote
1answer
155 views

How to mock an enum singleton class using Mockito/Powermock?

I am unsure on how to mock an enum singleton class. public enum SingletonObject{ INSTANCE; private int num; protected setNum(int num) { this.num = num; } public int getNum() { ...
0
votes
0answers
121 views

mockito - what to do when anyString is not ok

I want to mock with PowerMockito/Mockito only one static method from a class. I did 'spy' on it. I really need the doAnswer method because the answer is customized according to the parameter value ...
1
vote
4answers
132 views

How to mock local variables in java? [duplicate]

In this situation? class A { public void f() { B b = new B(); C c = new C(); // use b and c, and how to modify their behaviour? } } How can I fullfill my idea with PowerMock and ...
1
vote
1answer
32 views

partially mocking static with PowerMockito

All the examples I find with partially mocking statics at the end use EasyMock, tehrefore PowerMock. Is there a way to partially mock statics with mockito - PowerMockito? Thank you! Roxana
0
votes
1answer
52 views

Powermock - @SupressStaticInitializationFor is not working

I have a class containing native methods and a static initializer which loads a dll and mocked it with powermock so that the the static initializer should be suppressed and the dll shouldn't be ...
0
votes
1answer
50 views

Suppressing a void static method and a static method in same class with PowerMock

I'm currently trying to do some unit testing on a some legacy code using PowerMock 1.4.10 and there is a method that I'm trying to test that has both static void calls and static non-void calls. Is ...
1
vote
1answer
79 views

apkbuilder finds duplicate file when adding powermock to an android test project

I'm attempting to add powermock-mockito and mockito into an Android Test project. I created the android test project using the android command-line tool to create the build.xml and project structure. ...
0
votes
0answers
110 views

Mocking, not suppressing, a java super class constructor (with PowerMockito)

I'm looking for a way to mock or otherwise stub the functionality of a parent class in a unit test for its childs constructor. The Parent class itself is poorly designed, but untouchable due to ...
0
votes
1answer
85 views

java.lang.NoSuchMethodError powermock

Guys Question: How to mock a static final class which has defined some other static final class? Problem Description: When I want to write some unit test case for a final class ...
1
vote
1answer
170 views

Mockito throws NullPointer when creating a mock object

I have an integration test in which some set up is done using Guice. I'm using Mockito to mock some of the dependencies. This has worked fine for me until now. I needed to use PowerMock for some other ...
0
votes
1answer
31 views

Powermockito throws an OutOfMemory exception when stubbing FileOutputStream

I am not sure why this happens, but when I run the test code I get an OutOfMemoryException. Test: @RunWith(PowerMockRunner.class) @PrepareForTest(UploadBulkRefundAction.class) public class ...
1
vote
0answers
348 views

“java.lang.IllegalStateException: no last call on a mock available” only from ant, works fine in eclipse

I'm using EasyMock3.1/testNg-5.7/Powermock-easymock-1.5-full. The code is very simple, just mock a public static method. import static org.powermock.api.easymock.PowerMock.createMock; import static ...
0
votes
0answers
50 views

PowerMock EasyMock TooManyConstructorsFoundException

Class to be tested: class ToBeTested { public method() { Set<Bar> bars = new HashSet<Bar>(); Foo foo = new Foo(bars, 1); // do some other stuff } } // ...
0
votes
1answer
63 views

Not able to mock the static method with powermockito?

Getting the exception: although stubbed methods may return mocks, you cannot inline mock creation (mock()) call inside a thenReturn method (see issue 53) I am following the ...
0
votes
0answers
55 views

How to combine JUnit4 dynamically created testsuite with PowerMock

I want to apply this pattern Current framework for data driven testing of java apps (spring based) to my tests. It worked well as posted, but my actual test is using PowerMockRunner and ...
0
votes
1answer
143 views

PowerMockito mock static method which throws exception

I have some static methods to mock using Mockito + PowerMock. Everything was correct until I tried to mock a static method which throws exception only (and do nothing else). My test class looks like ...
-1
votes
1answer
32 views

Access the original object instead of returning in powermock-mockito?

Lets take an example (Note I am using PowerMock - Mockito ) Class A { public void method1(Object obj) { } } Now , when we use mockito , we have the api's like ...
-1
votes
1answer
44 views

How to access the object declared in the method?

How to access the object declared in the method using powermock-mockito ? For example : Class A { private void method1() { B b = new B(); // This method returns nothing , and I have no ...
1
vote
2answers
84 views

Editing what a method returns java

I ran into problem when I was modding a game. I needed to modify what a method returned without editing that method itself. I tried doing this with power-mock to no avail. Does anyone know how to do ...
0
votes
1answer
46 views

How to mock the default constructor using PowerMock with Mockito?

How should I mock the default constructor using PowerMock-Mockito(No EasyMock) ? I want to access the values of the object by doing this. For example : Class A { public A() { } }
1
vote
1answer
67 views

How to access the object inside the private method?

I have mocked the private method using the PowerMock/Mockito , now my question here is how can I access the object declared inside this method ? for example . private void method1() { MyObject ob = ...
1
vote
0answers
76 views

Mocking a Static Method without replayAll() in PowerMock

Does anyone know of a way to do a mock of a static class without calling replayAll()? I've seen many examples where people mock the Math.random() and use the replayAll(). To me it seems like ...
1
vote
2answers
76 views

How to mock the springcontext?

private ServiceImpl() { // TODO Auto-generated constructor stub reMgr = (ReManager) SpringContext.getBean("reManager"); I want to mock this method , this is a private constructor which is ...
0
votes
1answer
68 views

Abstracting a Test Class

I have a few tests right now that uses PowerMock and Mockito to "mock objects". The problem is, all those tests create the same mocks over and over again. Is it possible to have an abstract class from ...
3
votes
2answers
260 views

TDD: how to mock static method in Java?

Please bare with me, as I am new to the TDD world. I have a class FileGenerator, and I'm writing a test for the generateFile() method that should do the following: 1) it should call the static ...
0
votes
1answer
108 views

Powermock constructor mocking has no effect on the instantiated object

Class A{ B objB = new B(); objB.someBMethod(); } Class B{ public void someBMethof(){ C objC = new C(); } } class C{ int a=1; public C(){} ...

1 2 3 4 5 6