Package ar.com.dgarcia.javaspec.impl.junit

Examples of ar.com.dgarcia.javaspec.impl.junit.JunitTestCode


        assertThat(createdTree.getJunitTests()).isEmpty();
    }

    @Test
    public void itShouldAddAGivenTest(){
        JunitTestCode givenTest = mock(JunitTestCode.class);
        createdTree.addTest(givenTest);
        assertThat(createdTree.getJunitTests()).contains(givenTest);
    }
View Full Code Here

TOP

Related Classes of ar.com.dgarcia.javaspec.impl.junit.JunitTestCode

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.