This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//=================================================================================================
class MockStaticMethod {
public int getResult(int a, int b, boolean sum) {
if (sum) {
return sum(a, b);
} else {
return diff(a, b);
}
} // getResult
//-----------------------------------------------------------------------------------------------
public static int sum(int a, int b) {
return a + b;
} // sum
//-----------------------------------------------------------------------------------------------
private static int diff(int a, int b) {
return a - b;
} // diff
} // MockStaticMethod
Mock Private Static Method
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@Test
public void testDiff() throws Exception {
PowerMockito.mockStatic(MockStaticMethod.class);
PowerMockito.doReturn(3).when(MockStaticMethod.class, "diff", Mockito.anyInt(), Mockito.anyInt());
MockStaticMethod obj = new MockStaticMethod();
Assert.assertEquals(3, obj.getResult(0, 0, false));
Assert.assertEquals(3, obj.getResult(1, 2, false));
} // testDiff
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
PowerMockito.mockStatic(MockStaticMethod.class);
PowerMockito.doReturn(3).when(MockStaticMethod.class, "diff", Mockito.anyInt(), Mockito.anyInt());
Mock Public Static Method
When mocking public static method we could use either of following:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
PowerMockito.mockStatic(MockStaticMethod.class);
PowerMockito.when(MockStaticMethod.sum(Mockito.anyInt(), Mockito.anyInt())).thenReturn(100);
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
PowerMockito.mockStatic(MockStaticMethod.class);
PowerMockito.doReturn(100).when(MockStaticMethod.class, "sum", Mockito.anyInt(), Mockito.anyInt());
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@Test
public void testSumRight() throws Exception {
PowerMockito.mockStatic(MockStaticMethod.class);
PowerMockito.when(MockStaticMethod.sum(Mockito.anyInt(), Mockito.anyInt())).thenReturn(100);
MockStaticMethod obj = new MockStaticMethod();
Assert.assertEquals(100, obj.getResult(0, 0, true));
Assert.assertEquals(100, obj.getResult(1, 2, true));
} // testSumRight
//-----------------------------------------------------------------------------------------------
@Test
public void testSumRight2() throws Exception {
PowerMockito.mockStatic(MockStaticMethod.class);
PowerMockito.doReturn(100).when(MockStaticMethod.class, "sum", Mockito.anyInt(), Mockito.anyInt());
MockStaticMethod obj = new MockStaticMethod();
Assert.assertEquals(100, obj.getResult(0, 0, true));
Assert.assertEquals(100, obj.getResult(1, 2, true));
} // testSumRight2
BE CAREFUL NOT USE FOLLOWING WITH PUBLIC STATIC METHOD
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@Test
public void testSumWrong() throws Exception {
PowerMockito.mockStatic(MockStaticMethod.class);
PowerMockito.doReturn(100).when(MockStaticMethod.sum(Mockito.anyInt(), Mockito.anyInt()));
MockStaticMethod obj = new MockStaticMethod();
Assert.assertEquals(100, obj.getResult(0, 0, true));
Assert.assertEquals(100, obj.getResult(1, 2, true));
} // testSumWrong
org.mockito.exceptions.misusing.UnfinishedStubbingException:
Unfinished stubbing detected here:
-> at org.powermock.api.mockito.internal.PowerMockitoCore.doAnswer(PowerMockitoCore.java:36)
E.g. thenReturn() may be missing.
Examples of correct stubbing:
when(mock.isOk()).thenReturn(true);
when(mock.isOk()).thenThrow(exception);
doThrow(exception).when(mock).someVoidMethod();
Hints:
1. missing thenReturn()
2. you are trying to stub a final method, you naughty developer!
3: you are stubbing the behaviour of another mock inside before 'thenReturn' instruction if completed
No comments:
Post a Comment