diff --git a/.gitignore b/.gitignore index 7ca6744..7656ce3 100644 --- a/.gitignore +++ b/.gitignore @@ -5,7 +5,4 @@ build # Ignore bin -.\app\bin -./app/bin -\app\bin -/app/bin \ No newline at end of file +app/bin/ \ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json index c5cc70a..9cc64d4 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,4 +1,5 @@ { + "java.configuration.updateBuildConfiguration": "interactive" "cSpell.words": [ "pokemudry", "Spritesheet" diff --git a/app/build.gradle b/app/build.gradle index 88068ed..c4019a9 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -32,10 +32,11 @@ dependencies { application { // Define the main class for the application. - mainClass = 'pokemudry.App' + mainClass = 'PokeMudry' } - +/* tasks.named('test') { // Use JUnit Platform for unit tests. useJUnitPlatform() } +*/ diff --git a/app/src/test/java/AppTest.java b/app/src/test/java/AppTest.java deleted file mode 100644 index 86becf2..0000000 --- a/app/src/test/java/AppTest.java +++ /dev/null @@ -1,11 +0,0 @@ -/* - * This Java source file was generated by the Gradle 'init' task. - */ - -import org.junit.jupiter.api.Test; - -import static org.junit.jupiter.api.Assertions.*; - -class AppTest { - -}