Search in sources :

Example 91 with MyClass

use of samples.newmocking.MyClass in project powermock by powermock.

the class ExpectNewCases method testInvokeVoidMethod.

@Test
public void testInvokeVoidMethod() throws Exception {
    ExpectNewDemo tested = new ExpectNewDemo();
    MyClass myClassMock = createMock(MyClass.class);
    expectNew(MyClass.class).andReturn(myClassMock);
    myClassMock.voidMethod();
    expectLastCall().times(1);
    replay(myClassMock, MyClass.class);
    tested.invokeVoidMethod();
    verify(myClassMock, MyClass.class);
}
Also used : ExpectNewDemo(samples.expectnew.ExpectNewDemo) MyClass(samples.newmocking.MyClass) Test(org.junit.Test)

Example 92 with MyClass

use of samples.newmocking.MyClass in project powermock by powermock.

the class ExpectNewCases method testPreviousProblemsWithByteCodeManipulation.

@Test
public void testPreviousProblemsWithByteCodeManipulation() throws Exception {
    MyClass myClassMock1 = createMock(MyClass.class);
    expect(myClassMock1.getMessage()).andReturn("Hello");
    expect(myClassMock1.getMessage()).andReturn("World");
    replay(myClassMock1);
    assertEquals("Hello", myClassMock1.getMessage());
    assertEquals("World", myClassMock1.getMessage());
    verify(myClassMock1);
}
Also used : MyClass(samples.newmocking.MyClass) Test(org.junit.Test)

Example 93 with MyClass

use of samples.newmocking.MyClass in project powermock by powermock.

the class ExpectNewCases method testSimpleMultipleNew_withRange_notWithinRange.

@Test
public void testSimpleMultipleNew_withRange_notWithinRange() throws Exception {
    ExpectNewDemo tested = new ExpectNewDemo();
    MyClass myClassMock1 = createMock(MyClass.class);
    expectNew(MyClass.class).andReturn(myClassMock1).times(5, 7);
    replay(myClassMock1, MyClass.class);
    tested.simpleMultipleNew();
    try {
        verify(myClassMock1, MyClass.class);
        fail("Should throw AssertionError.");
    } catch (AssertionError e) {
        assertEquals("\n  Expectation failure on verify:" + "\n    samples.newmocking.MyClass(): expected: between 5 and 7, actual: 3", e.getMessage());
    }
}
Also used : ExpectNewDemo(samples.expectnew.ExpectNewDemo) MyClass(samples.newmocking.MyClass) Test(org.junit.Test)

Aggregations

MyClass (samples.newmocking.MyClass)93 Test (org.junit.Test)91 ExpectNewDemo (samples.expectnew.ExpectNewDemo)75 PrepareForTest (org.powermock.core.classloader.annotations.PrepareForTest)49 PrepareEverythingForTest (org.powermock.core.classloader.annotations.PrepareEverythingForTest)21 StupidNew (samples.newmocking.StupidNew)3 MockitoAssertionError (org.mockito.exceptions.base.MockitoAssertionError)2