Removing redundant client

This commit is contained in:
hitanshu310 2025-01-26 16:48:48 +05:30
parent a77d91b719
commit 9298520865
2 changed files with 0 additions and 28 deletions

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