1
0

Removing Unit testing

This commit is contained in:
Nigel Barink 2024-03-18 21:46:08 +01:00
parent 90dde80ee5
commit 0ae9b24741
Signed by: Nigel
GPG Key ID: 358D4144AFCABCBC
2 changed files with 0 additions and 28 deletions

View File

@ -1,14 +0,0 @@
/*
* This Java source file was generated by the Gradle 'init' task.
*/
package org.barink;
public class App {
public String getGreeting() {
return "Hello World!";
}
public static void main(String[] args) {
System.out.println(new App().getGreeting());
}
}

View File

@ -1,14 +0,0 @@
/*
* This Java source file was generated by the Gradle 'init' task.
*/
package org.barink;
import org.junit.Test;
import static org.junit.Assert.*;
public class AppTest {
@Test public void appHasAGreeting() {
App classUnderTest = new App();
assertNotNull("app should have a greeting", classUnderTest.getGreeting());
}
}