From ae2ed5d7a3d0b6981e9560ff76141f51a0656294 Mon Sep 17 00:00:00 2001 From: physick Date: Wed, 22 Jul 2026 14:23:37 +0500 Subject: Java impl init --- jlox/app/src/test/java/org/example/AppTest.java | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 jlox/app/src/test/java/org/example/AppTest.java (limited to 'jlox/app/src/test') diff --git a/jlox/app/src/test/java/org/example/AppTest.java b/jlox/app/src/test/java/org/example/AppTest.java new file mode 100644 index 0000000..f5ce33d --- /dev/null +++ b/jlox/app/src/test/java/org/example/AppTest.java @@ -0,0 +1,14 @@ +/* + * This source file was generated by the Gradle 'init' task + */ +package org.example; + +import org.junit.jupiter.api.Test; +import static org.junit.jupiter.api.Assertions.*; + +class AppTest { + @Test void appHasAGreeting() { + App classUnderTest = new App(); + assertNotNull(classUnderTest.getGreeting(), "app should have a greeting"); + } +} -- cgit v1.3