Merging to main, folks can use this as a templet, create a fork and start checking in stuff #1

Merged
kruti merged 2 commits from hitanshu/Princeton1:main into main 2025-01-26 14:03:36 +00:00
2 changed files with 0 additions and 28 deletions
Showing only changes of commit 9298520865 - Show all commits

View File

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

View File

@ -1,14 +0,0 @@
/*
* This source file was generated by the Gradle 'init' task
*/
package com.hithomelabs.princeton1.module4;
import org.junit.jupiter.api.Test;
import static org.junit.jupiter.api.Assertions.*;
class AppTest {
@Test void appHasAGreeting() {
Client classUnderTest = new Client();
assertNotNull(classUnderTest.getGreeting(), "app should have a greeting");
}
}