Package samples.equalswithgetclass

Examples of samples.equalswithgetclass.EqualsWithGetClass


@PrepareForTest(EqualsWithGetClass.class)
public class EqualsWithGetClassTest {

    @Test
    public void callingGetClassOnAMockWorksWhenTheCallWasUnexpected() throws Exception {
        EqualsWithGetClass mock1 = createMock(EqualsWithGetClass.class);
        replayAll();
        assertTrue(mock1.getClass().getName().startsWith(EqualsWithGetClass.class.getName()));
    }
View Full Code Here


    @Test(expected = AssertionError.class)
    public void callingGetClassOnAMockFailsWhenTheCallWasUnexpectedAndMockStandardMethodsIsSet() throws Exception {
        MockGateway.MOCK_GET_CLASS_METHOD = true;
        try {
            EqualsWithGetClass mock1 = createMock(EqualsWithGetClass.class);
            replayAll();
            mock1.getClass();
        } finally {
            MockGateway.MOCK_GET_CLASS_METHOD = false;
        }
    }
View Full Code Here

TOP

Related Classes of samples.equalswithgetclass.EqualsWithGetClass

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.