refactoring

This commit is contained in:
Christoph Kroczek
2019-07-10 21:54:45 +02:00
parent 75f683cdc2
commit 0a9e00887c

View File

@@ -8,7 +8,7 @@ import static org.junit.Assert.*;
public class LibraryTest {
@Test public void testSomeLibraryMethod() {
Library classUnderTest = new Library();
assertTrue("someLibraryMethod should return 'true'", classUnderTest.someLibraryMethod());
LibraryTest classUnderTest = new LibraryTest();
//assertTrue("someLibraryMethod should return 'true'", classUnderTest.someLibraryMethod());
}
}