Java-Projekt mit allen erforderlichen Dateien und Ordnern pushen

Anmelden
3009594 2024-11-07 21:55:56 +01:00
parent f4beb8605b
commit 76d2b2c59b
9 changed files with 43 additions and 0 deletions

View File

@ -0,0 +1,5 @@
package domain.ExceptionsKlassen;
public class Test {
}

View File

@ -0,0 +1,18 @@
package domain.JTests;
import static org.junit.jupiter.api.Assertions.*;
import org.junit.jupiter.api.BeforeEach;
class Test {
@BeforeEach
void setUp() throws Exception {
}
@org.junit.jupiter.api.Test
void test() {
fail("Not yet implemented");
}
}

View File

@ -0,0 +1,5 @@
package domain;
public class Test {
}

View File

@ -0,0 +1,10 @@
package main;
public class Main {
public static void main(String[] args) {
// TODO Auto-generated method stub
}
}

View File

@ -0,0 +1,5 @@
package tui;
public class Tui {
}