Skip to content
Snippets Groups Projects
Commit f84f5c1c authored by Till's avatar Till
Browse files

deleted app

parent 5938e8a4
No related branches found
No related tags found
No related merge requests found
/*
* This source file was generated by the Gradle 'init' task
*/
package org.example;
public class App {
public String getGreeting() {
return "Hello World!";
}
public static void main(String[] args) {
System.out.println(new App().getGreeting());
}
}
/*
* This source file was generated by the Gradle 'init' task
*/
package org.example;
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());
}
}
# This file was generated by the Gradle 'init' task.
# https://docs.gradle.org/current/userguide/build_environment.html#sec:gradle_configuration_properties
org.gradle.configuration-cache=true
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment