[F] Fix gradle root

This commit is contained in:
Azalea
2022-11-09 23:01:17 -05:00
parent 77d4aa66dc
commit 380de99170
4 changed files with 0 additions and 29 deletions
-14
View File
@@ -1,14 +0,0 @@
/*
* This Java source file was generated by the Gradle 'init' task.
*/
package mars.assembler;
public class App {
public String getGreeting() {
return "Hello World!";
}
public static void main(String[] args) {
System.out.println(new App().getGreeting());
}
}
@@ -1,14 +0,0 @@
/*
* This Java source file was generated by the Gradle 'init' task.
*/
package mars.assembler;
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());
}
}
View File
-1
View File
@@ -9,4 +9,3 @@
*/
rootProject.name = 'MARS-Assembler'
include('app')