Adding a stack link list implementation #1

Merged
hitanshu merged 2 commits from stack_ll into main 2025-01-26 11:37:45 +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");
}
}