Compare commits

..

2 Commits

Author SHA1 Message Date
Christoph Kroczek
0a9e00887c refactoring 2019-07-10 21:54:45 +02:00
Christoph Kroczek
75f683cdc2 refactoring 2019-07-10 21:28:47 +02:00
3 changed files with 11 additions and 12 deletions

View File

@@ -0,0 +1,9 @@
package DT_01_currentdate;
public class CurrentDateStart {
public static void main(String[] args) {
System.out.println("TEST");
}
}

View File

@@ -1,10 +0,0 @@
/*
* This Java source file was generated by the Gradle 'init' task.
*/
package DT_01_currentdate;
public class Library {
public boolean someLibraryMethod() {
return true;
}
}

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());
}
}