commit 2b8860241a54f7f561cbfb478105530a2bacdc19 Author: Imron Date: Mon Jan 24 08:46:45 2022 +0100 initial commit diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..13566b8 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,8 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Editor-based HTTP Client requests +/httpRequests/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml diff --git a/.idea/compiler.xml b/.idea/compiler.xml new file mode 100644 index 0000000..b897390 --- /dev/null +++ b/.idea/compiler.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/jarRepositories.xml b/.idea/jarRepositories.xml new file mode 100644 index 0000000..712ab9d --- /dev/null +++ b/.idea/jarRepositories.xml @@ -0,0 +1,20 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..b95cec7 --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,14 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/uiDesigner.xml b/.idea/uiDesigner.xml new file mode 100644 index 0000000..e96534f --- /dev/null +++ b/.idea/uiDesigner.xml @@ -0,0 +1,124 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..bad4f39 --- /dev/null +++ b/pom.xml @@ -0,0 +1,67 @@ + + + 4.0.0 + + hs.fulda.de.ci.exam.project + AirlineManagementSystem + 1.0-SNAPSHOT + + + + 16 + 16 + 5.8.1 + 1.8.1 + 4.1.0 + 3.21.0 + + + + org.junit.jupiter + junit-jupiter-engine + ${junit.jupiter.version} + test + + + org.junit.jupiter + junit-jupiter-params + ${junit.jupiter.version} + test + + + + + org.assertj + assertj-core + ${assertj.version} + test + + + org.mockito + mockito-core + ${mockito.version} + test + + + org.mockito + mockito-junit-jupiter + ${mockito.version} + test + + + + + + + org.apache.maven.plugins + maven-surefire-plugin + + 2.22.2 + + + + + + \ No newline at end of file diff --git a/src/main/java/hs/fulda/de/ci/exam/project/ExampleClass.java b/src/main/java/hs/fulda/de/ci/exam/project/ExampleClass.java new file mode 100644 index 0000000..0f6e89f --- /dev/null +++ b/src/main/java/hs/fulda/de/ci/exam/project/ExampleClass.java @@ -0,0 +1,7 @@ +package hs.fulda.de.ci.exam.project; + +public class ExampleClass { + public static void main(String[] args) { + System.out.println("Example Class Runs"); + } +} diff --git a/src/test/java/hs/fulda/de/ci/exam/project/ExampleTestClass.java b/src/test/java/hs/fulda/de/ci/exam/project/ExampleTestClass.java new file mode 100644 index 0000000..6624899 --- /dev/null +++ b/src/test/java/hs/fulda/de/ci/exam/project/ExampleTestClass.java @@ -0,0 +1,11 @@ +package hs.fulda.de.ci.exam.project; + +import org.junit.jupiter.api.Test; +import static org.junit.jupiter.api.Assertions.*; + +public class ExampleTestClass { + @Test + void testExampleClass() { + assertTrue(true); + } +} diff --git a/target/classes/hs/fulda/de/ci/exam/project/ExampleClass.class b/target/classes/hs/fulda/de/ci/exam/project/ExampleClass.class new file mode 100644 index 0000000..9217d9e Binary files /dev/null and b/target/classes/hs/fulda/de/ci/exam/project/ExampleClass.class differ diff --git a/target/test-classes/hs/fulda/de/ci/exam/project/ExampleTestClass.class b/target/test-classes/hs/fulda/de/ci/exam/project/ExampleTestClass.class new file mode 100644 index 0000000..9407af7 Binary files /dev/null and b/target/test-classes/hs/fulda/de/ci/exam/project/ExampleTestClass.class differ