From e0f40ab872a00520b4d94886754c4d9012135c13 Mon Sep 17 00:00:00 2001 From: dadgam3er Date: Mon, 9 Sep 2024 17:48:00 -0400 Subject: [PATCH] Fix: 1 --- .classpath | 57 ++++++++++++++++++ .gitea/workflows/mvn-demo.yml | 29 +++++++++ .idea/.gitignore | 3 + .idea/compiler.xml | 13 ++++ .idea/encodings.xml | 7 +++ .idea/jarRepositories.xml | 20 ++++++ .idea/misc.xml | 14 +++++ .idea/vcs.xml | 7 +++ .project | 34 +++++++++++ .settings/org.eclipse.core.resources.prefs | 4 ++ .settings/org.eclipse.jdt.apt.core.prefs | 2 + .settings/org.eclipse.jdt.core.prefs | 9 +++ .settings/org.eclipse.m2e.core.prefs | 4 ++ pom.xml | 31 ++++++++++ src/main/java/PrepSession/App.java | 13 ++++ src/main/java/PrepSession/Attack.java | 5 ++ src/main/java/PrepSession/Breed.java | 14 +++++ src/main/java/PrepSession/Eagle.java | 18 ++++++ src/main/java/PrepSession/Fish.java | 22 +++++++ src/main/java/PrepSession/Hide.java | 5 ++ src/main/java/PrepSession/MainClass.java | 23 +++++++ src/main/java/PrepSession/Rabbit.java | 17 ++++++ src/test/java/PrepSession/AppTest.java | 38 ++++++++++++ src/test/java/PrepSession/EagleTestCase.java | 21 +++++++ src/test/java/PrepSession/FishTestCase.java | 31 ++++++++++ src/test/java/PrepSession/RabbitTestCase.java | 19 ++++++ target/classes/PrepSession/App.class | Bin 0 -> 537 bytes target/classes/PrepSession/Attack.class | Bin 0 -> 131 bytes target/classes/PrepSession/Breed.class | Bin 0 -> 638 bytes target/classes/PrepSession/Eagle.class | Bin 0 -> 903 bytes target/classes/PrepSession/Fish.class | Bin 0 -> 938 bytes target/classes/PrepSession/Hide.class | Bin 0 -> 124 bytes target/classes/PrepSession/MainClass.class | Bin 0 -> 972 bytes target/classes/PrepSession/Rabbit.class | Bin 0 -> 800 bytes .../compile/default-compile/createdFiles.lst | 7 +++ .../compile/default-compile/inputFiles.lst | 8 +++ .../default-testCompile/createdFiles.lst | 4 ++ .../default-testCompile/inputFiles.lst | 4 ++ .../surefire-reports/PrepSession.AppTest.txt | 4 ++ .../PrepSession.EagleTestCase.txt | 4 ++ .../PrepSession.FishTestCase.txt | 4 ++ .../PrepSession.RabbitTestCase.txt | 4 ++ .../TEST-PrepSession.AppTest.xml | 56 +++++++++++++++++ .../TEST-PrepSession.EagleTestCase.xml | 56 +++++++++++++++++ .../TEST-PrepSession.FishTestCase.xml | 57 ++++++++++++++++++ .../TEST-PrepSession.RabbitTestCase.xml | 56 +++++++++++++++++ target/test-classes/PrepSession/AppTest.class | Bin 0 -> 601 bytes .../PrepSession/EagleTestCase.class | Bin 0 -> 1053 bytes .../PrepSession/FishTestCase.class | Bin 0 -> 1230 bytes .../PrepSession/RabbitTestCase.class | Bin 0 -> 984 bytes 50 files changed, 724 insertions(+) create mode 100644 .classpath create mode 100644 .gitea/workflows/mvn-demo.yml create mode 100644 .idea/.gitignore create mode 100644 .idea/compiler.xml create mode 100644 .idea/encodings.xml create mode 100644 .idea/jarRepositories.xml create mode 100644 .idea/misc.xml create mode 100644 .idea/vcs.xml create mode 100644 .project create mode 100644 .settings/org.eclipse.core.resources.prefs create mode 100644 .settings/org.eclipse.jdt.apt.core.prefs create mode 100644 .settings/org.eclipse.jdt.core.prefs create mode 100644 .settings/org.eclipse.m2e.core.prefs create mode 100644 pom.xml create mode 100644 src/main/java/PrepSession/App.java create mode 100644 src/main/java/PrepSession/Attack.java create mode 100644 src/main/java/PrepSession/Breed.java create mode 100644 src/main/java/PrepSession/Eagle.java create mode 100644 src/main/java/PrepSession/Fish.java create mode 100644 src/main/java/PrepSession/Hide.java create mode 100644 src/main/java/PrepSession/MainClass.java create mode 100644 src/main/java/PrepSession/Rabbit.java create mode 100644 src/test/java/PrepSession/AppTest.java create mode 100644 src/test/java/PrepSession/EagleTestCase.java create mode 100644 src/test/java/PrepSession/FishTestCase.java create mode 100644 src/test/java/PrepSession/RabbitTestCase.java create mode 100644 target/classes/PrepSession/App.class create mode 100644 target/classes/PrepSession/Attack.class create mode 100644 target/classes/PrepSession/Breed.class create mode 100644 target/classes/PrepSession/Eagle.class create mode 100644 target/classes/PrepSession/Fish.class create mode 100644 target/classes/PrepSession/Hide.class create mode 100644 target/classes/PrepSession/MainClass.class create mode 100644 target/classes/PrepSession/Rabbit.class create mode 100644 target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst create mode 100644 target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst create mode 100644 target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst create mode 100644 target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst create mode 100644 target/surefire-reports/PrepSession.AppTest.txt create mode 100644 target/surefire-reports/PrepSession.EagleTestCase.txt create mode 100644 target/surefire-reports/PrepSession.FishTestCase.txt create mode 100644 target/surefire-reports/PrepSession.RabbitTestCase.txt create mode 100644 target/surefire-reports/TEST-PrepSession.AppTest.xml create mode 100644 target/surefire-reports/TEST-PrepSession.EagleTestCase.xml create mode 100644 target/surefire-reports/TEST-PrepSession.FishTestCase.xml create mode 100644 target/surefire-reports/TEST-PrepSession.RabbitTestCase.xml create mode 100644 target/test-classes/PrepSession/AppTest.class create mode 100644 target/test-classes/PrepSession/EagleTestCase.class create mode 100644 target/test-classes/PrepSession/FishTestCase.class create mode 100644 target/test-classes/PrepSession/RabbitTestCase.class diff --git a/.classpath b/.classpath new file mode 100644 index 0000000..653dfd7 --- /dev/null +++ b/.classpath @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/.gitea/workflows/mvn-demo.yml b/.gitea/workflows/mvn-demo.yml new file mode 100644 index 0000000..1482583 --- /dev/null +++ b/.gitea/workflows/mvn-demo.yml @@ -0,0 +1,29 @@ +name: Gitea Actions Demo +run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀 +on: [push] + +jobs: + Explore-Gitea-Actions: + runs-on: ubuntu-latest + steps: + - run: echo "🎉 The job was automatically triggered by a ${{ gitea.event_name }} event." + - run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by Gitea!" + - run: echo "🔎 The name of your branch is ${{ gitea.ref }} and your repository is ${{ gitea.repository }}." + - name: Check out repository code + uses: actions/checkout@v4 + - run: echo "💡 The ${{ gitea.repository }} repository has been cloned to the runner." + - run: echo "🖥️ The workflow is now ready to test your code on the runner." + - name: List files in the repository + run: | + ls ${{ gitea.workspace }} + - run: echo "🍏 This job's status is ${{ job.status }}." + + GoBuild: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-go@v4 + with: + java-version: '17' + distribution: 'temurin' + - run: mvn test diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..26d3352 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,3 @@ +# Default ignored files +/shelf/ +/workspace.xml diff --git a/.idea/compiler.xml b/.idea/compiler.xml new file mode 100644 index 0000000..d17b66e --- /dev/null +++ b/.idea/compiler.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/encodings.xml b/.idea/encodings.xml new file mode 100644 index 0000000..aa00ffa --- /dev/null +++ b/.idea/encodings.xml @@ -0,0 +1,7 @@ + + + + + + + \ 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..82dbec8 --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,14 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..288b36b --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/.project b/.project new file mode 100644 index 0000000..6e84c8e --- /dev/null +++ b/.project @@ -0,0 +1,34 @@ + + + MvnDemo + + + + + + org.eclipse.jdt.core.javabuilder + + + + + org.eclipse.m2e.core.maven2Builder + + + + + + org.eclipse.jdt.core.javanature + org.eclipse.m2e.core.maven2Nature + + + + 1725911893817 + + 30 + + org.eclipse.core.resources.regexFilterMatcher + node_modules|\.git|__CREATED_BY_JAVA_LANGUAGE_SERVER__ + + + + diff --git a/.settings/org.eclipse.core.resources.prefs b/.settings/org.eclipse.core.resources.prefs new file mode 100644 index 0000000..f9fe345 --- /dev/null +++ b/.settings/org.eclipse.core.resources.prefs @@ -0,0 +1,4 @@ +eclipse.preferences.version=1 +encoding//src/main/java=UTF-8 +encoding//src/test/java=UTF-8 +encoding/=UTF-8 diff --git a/.settings/org.eclipse.jdt.apt.core.prefs b/.settings/org.eclipse.jdt.apt.core.prefs new file mode 100644 index 0000000..d4313d4 --- /dev/null +++ b/.settings/org.eclipse.jdt.apt.core.prefs @@ -0,0 +1,2 @@ +eclipse.preferences.version=1 +org.eclipse.jdt.apt.aptEnabled=false diff --git a/.settings/org.eclipse.jdt.core.prefs b/.settings/org.eclipse.jdt.core.prefs new file mode 100644 index 0000000..1b6e1ef --- /dev/null +++ b/.settings/org.eclipse.jdt.core.prefs @@ -0,0 +1,9 @@ +eclipse.preferences.version=1 +org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8 +org.eclipse.jdt.core.compiler.compliance=1.8 +org.eclipse.jdt.core.compiler.problem.enablePreviewFeatures=disabled +org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning +org.eclipse.jdt.core.compiler.problem.reportPreviewFeatures=ignore +org.eclipse.jdt.core.compiler.processAnnotations=disabled +org.eclipse.jdt.core.compiler.release=disabled +org.eclipse.jdt.core.compiler.source=1.8 diff --git a/.settings/org.eclipse.m2e.core.prefs b/.settings/org.eclipse.m2e.core.prefs new file mode 100644 index 0000000..f897a7f --- /dev/null +++ b/.settings/org.eclipse.m2e.core.prefs @@ -0,0 +1,4 @@ +activeProfiles= +eclipse.preferences.version=1 +resolveWorkspaceProjects=true +version=1 diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..b79a544 --- /dev/null +++ b/pom.xml @@ -0,0 +1,31 @@ + + 4.0.0 + + PrepSession + MvnDemo + 1.0-SNAPSHOT + jar + + MvnDemo + http://maven.apache.org + + + UTF-8 + + + + + junit + junit + 3.8.1 + test + + + junit + junit + 4.13.2 + test + + + diff --git a/src/main/java/PrepSession/App.java b/src/main/java/PrepSession/App.java new file mode 100644 index 0000000..9957678 --- /dev/null +++ b/src/main/java/PrepSession/App.java @@ -0,0 +1,13 @@ +package PrepSession; + +/** + * Hello world! + * + */ +public class App +{ + public static void main( String[] args ) + { + System.out.println( "Hello World!" ); + } +} diff --git a/src/main/java/PrepSession/Attack.java b/src/main/java/PrepSession/Attack.java new file mode 100644 index 0000000..ebf02c0 --- /dev/null +++ b/src/main/java/PrepSession/Attack.java @@ -0,0 +1,5 @@ +package PrepSession; + +public interface Attack { + void Attacking(); +} diff --git a/src/main/java/PrepSession/Breed.java b/src/main/java/PrepSession/Breed.java new file mode 100644 index 0000000..04fa612 --- /dev/null +++ b/src/main/java/PrepSession/Breed.java @@ -0,0 +1,14 @@ +package PrepSession; + +public abstract class Breed { + + public abstract void Breeding(); + + int lifeNum = 1; + String enviroment = "home"; + + public void Mating() { + System.out.println("Male and Female has to mate"); + } + +} diff --git a/src/main/java/PrepSession/Eagle.java b/src/main/java/PrepSession/Eagle.java new file mode 100644 index 0000000..3beb8a8 --- /dev/null +++ b/src/main/java/PrepSession/Eagle.java @@ -0,0 +1,18 @@ +package PrepSession; + +public class Eagle extends Breed implements Attack{ + public static void main(String[] args) { + Eagle eagle = new Eagle(); + System.out.println(eagle.lifeNum); + } + + @Override + public void Attacking() { + System.out.println("The Eagle is going crazy and I can't fucking find his prey."); + } + + @Override + public void Breeding() { + System.out.println("Breeding through laying eggs... Oviparous"); + } +} diff --git a/src/main/java/PrepSession/Fish.java b/src/main/java/PrepSession/Fish.java new file mode 100644 index 0000000..0dd4d1d --- /dev/null +++ b/src/main/java/PrepSession/Fish.java @@ -0,0 +1,22 @@ +package PrepSession; + +public class Fish extends Breed implements Hide, Attack{ + public static void main(String[] args) { + + } + + @Override + public void Hiding() { + System.out.println("The fish is going deeper to hide from the Eagle"); + } + + @Override + public void Attacking() { + System.out.println("The fish attacked a smaller fish"); + } + + @Override + public void Breeding() { + System.out.println("Breeding through laying eggs... Oviparous"); + } +} \ No newline at end of file diff --git a/src/main/java/PrepSession/Hide.java b/src/main/java/PrepSession/Hide.java new file mode 100644 index 0000000..cb3a625 --- /dev/null +++ b/src/main/java/PrepSession/Hide.java @@ -0,0 +1,5 @@ +package PrepSession; + +public interface Hide { + void Hiding(); +} diff --git a/src/main/java/PrepSession/MainClass.java b/src/main/java/PrepSession/MainClass.java new file mode 100644 index 0000000..98da750 --- /dev/null +++ b/src/main/java/PrepSession/MainClass.java @@ -0,0 +1,23 @@ +package PrepSession; + +public class MainClass { + public static void main(String[] args) { + + Fish fish = new Fish(); + fish.Hiding(); + fish.Attacking(); + fish.Breeding(); + System.out.println(""); + + Rabbit rabbit = new Rabbit(); + rabbit.Hiding(); + rabbit.Mating(); + rabbit.Breeding(); + System.out.println(""); + + Eagle hawk = new Eagle(); + hawk.Attacking(); + hawk.Mating(); + hawk.Breeding(); + } +} diff --git a/src/main/java/PrepSession/Rabbit.java b/src/main/java/PrepSession/Rabbit.java new file mode 100644 index 0000000..424a217 --- /dev/null +++ b/src/main/java/PrepSession/Rabbit.java @@ -0,0 +1,17 @@ +package PrepSession; + +public class Rabbit extends Breed implements Hide{ + public static void main(String[] args) { + + } + + @Override + public void Hiding() { + System.out.println("The Rabbit is running like crazy to hide."); + } + + @Override + public void Breeding() { + System.out.println("Breeding by having small baby rabbits... Mammals"); + } +} \ No newline at end of file diff --git a/src/test/java/PrepSession/AppTest.java b/src/test/java/PrepSession/AppTest.java new file mode 100644 index 0000000..b1f153e --- /dev/null +++ b/src/test/java/PrepSession/AppTest.java @@ -0,0 +1,38 @@ +package PrepSession; + +import junit.framework.Test; +import junit.framework.TestCase; +import junit.framework.TestSuite; + +/** + * Unit test for simple App. + */ +public class AppTest + extends TestCase +{ + /** + * Create the test case + * + * @param testName name of the test case + */ + public AppTest( String testName ) + { + super( testName ); + } + + /** + * @return the suite of tests being tested + */ + public static Test suite() + { + return new TestSuite( AppTest.class ); + } + + /** + * Rigourous Test :-) + */ + public void testApp() + { + assertTrue( true ); + } +} diff --git a/src/test/java/PrepSession/EagleTestCase.java b/src/test/java/PrepSession/EagleTestCase.java new file mode 100644 index 0000000..50cf8ef --- /dev/null +++ b/src/test/java/PrepSession/EagleTestCase.java @@ -0,0 +1,21 @@ +package PrepSession; + +import org.junit.Test; + +import java.io.ByteArrayOutputStream; +import java.io.PrintStream; + +import static org.junit.Assert.assertEquals; + +public class EagleTestCase { + @Test + public void Eagle_testATTACK(){ + Eagle hawk = new Eagle(); + ByteArrayOutputStream eagAttack = new ByteArrayOutputStream(); + System.setOut(new PrintStream(eagAttack)); + hawk.Attacking(); + assertEquals("The Eagle is going crazy and I can't fucking find his prey.\n", eagAttack.toString()); + assertEquals(1, hawk.lifeNum); + + } +} diff --git a/src/test/java/PrepSession/FishTestCase.java b/src/test/java/PrepSession/FishTestCase.java new file mode 100644 index 0000000..7a69e0b --- /dev/null +++ b/src/test/java/PrepSession/FishTestCase.java @@ -0,0 +1,31 @@ +package PrepSession; + +import org.junit.Test; + +import java.io.ByteArrayOutputStream; +import java.io.PrintStream; + +import static org.junit.Assert.assertEquals; + +public class FishTestCase { + // Fish hides successfully + @Test + public void test_fish_hides_successfully() { + Fish fish = new Fish(); + // Assuming the output is checked via console output, we can use System.out to capture it. + // This is a simple example, in real scenarios, we might use a logging framework or mock the output. + ByteArrayOutputStream outContent = new ByteArrayOutputStream(); + System.setOut(new PrintStream(outContent)); + fish.Hiding(); + assertEquals("The fish is going deeper to hide from the Eagle\n", outContent.toString()); + } + + @Test + public void test_fishAttack(){ + Fish fish = new Fish(); + ByteArrayOutputStream attckOut = new ByteArrayOutputStream(); + System.setOut(new PrintStream(attckOut)); + fish.Attacking(); + assertEquals("The fish attacked a smaller fish\n", attckOut.toString()); + } +} diff --git a/src/test/java/PrepSession/RabbitTestCase.java b/src/test/java/PrepSession/RabbitTestCase.java new file mode 100644 index 0000000..cc9b0ec --- /dev/null +++ b/src/test/java/PrepSession/RabbitTestCase.java @@ -0,0 +1,19 @@ +package PrepSession; + +import org.junit.Test; + +import java.io.ByteArrayOutputStream; +import java.io.PrintStream; + +import static org.junit.Assert.assertEquals; + +public class RabbitTestCase { + @Test + public void Rabbit_TestCase(){ + Rabbit rabbit = new Rabbit(); + ByteArrayOutputStream outContent = new ByteArrayOutputStream(); + System.setOut(new PrintStream(outContent)); + rabbit.Hiding(); + assertEquals("The Rabbit is running like crazy to hide.\n", outContent.toString()); + } +} diff --git a/target/classes/PrepSession/App.class b/target/classes/PrepSession/App.class new file mode 100644 index 0000000000000000000000000000000000000000..92e6b9de217356c02a02b2d6aa848827aedd5039 GIT binary patch literal 537 zcmZvZ$w~u35QhKGHjAU#Ox!i`lz4D1f`^D8f_NA-FcJ@*I!O~d%*M<_@Uiru;K2v* zp~UKm5R~+xnySD4uX_3V{`drNfAZY;aeox05gLN%DFKpe1u{Um; zsGzE$W}%LChWZj0gBB@<7ZA2H=Vk{as0=2(?m$D6q1=x}+u00jLIO4Fdxs S&@fg8HV}(}9Y``UZ~y=_iyc}3 literal 0 HcmV?d00001 diff --git a/target/classes/PrepSession/Breed.class b/target/classes/PrepSession/Breed.class new file mode 100644 index 0000000000000000000000000000000000000000..f21f26392292bd7ca9fa5b365ff11fc9ab82bf4c GIT binary patch literal 638 zcmZXS%TC)s6o&tkxcGugf`I~s7E^9X7R?5!iy#&tAt8l=lq&m4G9`oTF|sE}JQhfR z#G((-hpIS}phk#=kLMiE|DBuv{(JrdU>}VDC6rw_AwFP+P`wg2qL~PN**x!E$-W`X z94M{KA)#EWcYS#9T?8R!5fbJva(Ug6MWHg?Jj$gU5ZpxlmOn=+flfWl5u9O`N-L~} zm`6kiq`px(2Q}lP_B3V3nUs(xr)1Wz7rL8CFY? zwmf_$teuHO#zGI`6PeoMP!zGr;#3$JU>#pvd=0UIn6NO;{}#esTw7$KIZN$*h4n7C zb({?(q0&~`w%e2WFVRal61B6wNV+0d)_)B;W~d5I)_ym!7Qq{jj$7wxp9wQQ1f6V@ z_vMMQ$Y6ZoyRFpOjd!Y=c`vAzG?AFo{h9t+XxBi5!s`!m_1JjP66{shL5 J8hRe_Og3XTyJ2@yi2q8F z78Lve{wVQGQcaQlGH1`6bDr~_nb}{zzyAdA3{PE@P_|IRnEvsZrE5EjUAGaYUwEkF#_Zjd?8Q#+6Z&`@YZjj@499B)4#vp>h6nUuiAE zBNF^39ZH6co=VKfhcY`5hcWFmdTA))fyk8c&o(QXG}0;b&Z8DXb_q2RijJVw{#c}# z;v$PoaY2}&D$PYQI7?wP1%v%}J_fg+&azOxQzpkh; z6>6O@#D`7L2I(-!*0K!S*dfoRH~EO*M#5#bQDaqR>*R!H+hfQoF=wo>Sv WDP-`AA-4-4HGfgc5Ph4ZaqI??CQbRK3oVcoh%ZPSf{*}FafqN&s$4j2<8X3TSea3jURZ|Sc!?+-9vPL}i8WGW zqXsTBgvW{GA5@WWRq$A=Jm!&J5_T*Na5i+jbMFbheYDx=0Dyy)Rc$Y44w7Z7t0zLYOi!88CqkN%eRZ{ zM4Dr9l9H!0)-#b#g;CBvch+p83Wu#zIoT00WkS&ecKYwjMnJeQG39nkV0vb%lDcH@ zSA{L_jX$$s2qt=AX7W(E(tM{lbT5HBxJElv!42G^mD&Jvn?&a>St0$I^B#Ny`%IS# zIGqj#s+0;eR{^+-J+gf4;~sfj@5Cgk+mYdZi?;`wAZY2KP|8%m4rY literal 0 HcmV?d00001 diff --git a/target/classes/PrepSession/Hide.class b/target/classes/PrepSession/Hide.class new file mode 100644 index 0000000000000000000000000000000000000000..ecec038e8077ed2b110e6fbce7ab639c68f99078 GIT binary patch literal 124 zcmX^0Z`VEs1_l!bPId++Mh1a^qSS)m)Z*gI{5*Y+%#>7i1{R=bR$^JAeokUuy1su> zR%&tyBLf>yGBYook%3u5GmMdeD>%QjC^^+FGbfdiffJ-r52S~UkpZXzXg&i2BhVaH P1~w3jfgMOPF>n9?@F*Ho literal 0 HcmV?d00001 diff --git a/target/classes/PrepSession/MainClass.class b/target/classes/PrepSession/MainClass.class new file mode 100644 index 0000000000000000000000000000000000000000..fa5c5e81782598bceaee9670eeb43419d037cff3 GIT binary patch literal 972 zcmZuvYfl^**AAPs9)B--R?+4cUsKyUqO=(P;e!Acmufk%MwM~Ck`vH@h z^anKQUut@0F%=U?W|li==FFUX=l9>AzW_YJx{V=3EJPg)Bc?EZsK4l9Q+ti#yV{{! z4-{g{#xuc+LL`^pvk+&}uJ0aK-A>1}z2cVX9N4fB5jWz%5t`Vx**9K8LP-Z>5=yKE zfvz8&M<*PlBpP4$T~|^Qn8cKYX$Ld7a%qn0w@%=;*uH(jX{O5Igr;5G^^F%)1K-uH zQXJP5VB-dETDaxlHtr~-2V^Q($5PkyNR{hxg=$H}DN3U7u0pC`;d@=HnZQOyG-fa& zZq~trP-sO5p`;8ZEEE(b`YSheqv_hnOJN>KakJu>y2SqdsTFO!ji&B&6rvmLeOF`8q*ZhM54zT5Bvo$Lb#qVqM$YHKXmDUyG*cePRw7-C)C$wNPlMzV*M5Tp=>ago z&wO6#+|MpgPU4s!UW~%zCA4>4()d7sJtFZXG`tdmcC~%t*WE26!jk{hFUp(oev4d7 z`3*tIV$wh4smL$i8N-EBsP7^Ch+beIg2(huFM+H5l&1uq;W;Bx{D)*wek*6NKAs{` zp6kM2XNkxQF8?ahc*~4!OrebFaQH%RK;kdS6~`uCp~UgC+?i#(rhrv4 Ot>6vCD*l)IS^Ec6E6bh$ literal 0 HcmV?d00001 diff --git a/target/classes/PrepSession/Rabbit.class b/target/classes/PrepSession/Rabbit.class new file mode 100644 index 0000000000000000000000000000000000000000..aec609488a7847c640878c0c60938c0fdf3a695f GIT binary patch literal 800 zcmZuv%Wl&^6g@Xdp8dN6CO6)!3;N{t6Z# zvET#vD8wDRfF-<{JNI?Yxik0YukSwqJjK{W15F1l4?AcRb`Om@ovSRHz#iSk_xuT8sW z9bDz9tMNCil+b#WTGOBDM7`U@p)yA@j5so!rArwtq|w$t54Q5P&Io(6Do{x%;Lg&xO1b3cp%u>D9R#30x@$F;cHZJi35U%hxwAk_z z@Oh2BfGx4zdGrnRnJ*1o=hLQvCT{TQl?AwoTkLfq7_Mx7%)YJrud!WeB;3K>qVV2d v)@Owp2KxeMc;PGh|CsHj0xs`guL9CNXD8gR2idOy=`+Zn7UTg_H1O~@V2`0F literal 0 HcmV?d00001 diff --git a/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst b/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst new file mode 100644 index 0000000..714d24c --- /dev/null +++ b/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst @@ -0,0 +1,7 @@ +PrepSession/Hide.class +PrepSession/Rabbit.class +PrepSession/App.class +PrepSession/Attack.class +PrepSession/Eagle.class +PrepSession/MainClass.class +PrepSession/Fish.class diff --git a/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst b/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst new file mode 100644 index 0000000..06e47ec --- /dev/null +++ b/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst @@ -0,0 +1,8 @@ +/home/ilyes/mvnAction/MvnDemo/src/main/java/PrepSession/App.java +/home/ilyes/mvnAction/MvnDemo/src/main/java/PrepSession/Eagle.java +/home/ilyes/mvnAction/MvnDemo/src/main/java/PrepSession/Rabbit.java +/home/ilyes/mvnAction/MvnDemo/src/main/java/PrepSession/Hide.java +/home/ilyes/mvnAction/MvnDemo/src/main/java/PrepSession/Fish.java +/home/ilyes/mvnAction/MvnDemo/src/main/java/PrepSession/MainClass.java +/home/ilyes/mvnAction/MvnDemo/src/main/java/PrepSession/Attack.java +/home/ilyes/mvnAction/MvnDemo/src/main/java/PrepSession/Breed.java diff --git a/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst b/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst new file mode 100644 index 0000000..04b6c8f --- /dev/null +++ b/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst @@ -0,0 +1,4 @@ +PrepSession/AppTest.class +PrepSession/EagleTestCase.class +PrepSession/RabbitTestCase.class +PrepSession/FishTestCase.class diff --git a/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst b/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst new file mode 100644 index 0000000..edf31f9 --- /dev/null +++ b/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst @@ -0,0 +1,4 @@ +/home/ilyes/mvnAction/MvnDemo/src/test/java/PrepSession/FishTestCase.java +/home/ilyes/mvnAction/MvnDemo/src/test/java/PrepSession/EagleTestCase.java +/home/ilyes/mvnAction/MvnDemo/src/test/java/PrepSession/RabbitTestCase.java +/home/ilyes/mvnAction/MvnDemo/src/test/java/PrepSession/AppTest.java diff --git a/target/surefire-reports/PrepSession.AppTest.txt b/target/surefire-reports/PrepSession.AppTest.txt new file mode 100644 index 0000000..22a58a5 --- /dev/null +++ b/target/surefire-reports/PrepSession.AppTest.txt @@ -0,0 +1,4 @@ +------------------------------------------------------------------------------- +Test set: PrepSession.AppTest +------------------------------------------------------------------------------- +Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0 s -- in PrepSession.AppTest diff --git a/target/surefire-reports/PrepSession.EagleTestCase.txt b/target/surefire-reports/PrepSession.EagleTestCase.txt new file mode 100644 index 0000000..4d71723 --- /dev/null +++ b/target/surefire-reports/PrepSession.EagleTestCase.txt @@ -0,0 +1,4 @@ +------------------------------------------------------------------------------- +Test set: PrepSession.EagleTestCase +------------------------------------------------------------------------------- +Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.039 s -- in PrepSession.EagleTestCase diff --git a/target/surefire-reports/PrepSession.FishTestCase.txt b/target/surefire-reports/PrepSession.FishTestCase.txt new file mode 100644 index 0000000..5f696be --- /dev/null +++ b/target/surefire-reports/PrepSession.FishTestCase.txt @@ -0,0 +1,4 @@ +------------------------------------------------------------------------------- +Test set: PrepSession.FishTestCase +------------------------------------------------------------------------------- +Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0 s -- in PrepSession.FishTestCase diff --git a/target/surefire-reports/PrepSession.RabbitTestCase.txt b/target/surefire-reports/PrepSession.RabbitTestCase.txt new file mode 100644 index 0000000..7497b47 --- /dev/null +++ b/target/surefire-reports/PrepSession.RabbitTestCase.txt @@ -0,0 +1,4 @@ +------------------------------------------------------------------------------- +Test set: PrepSession.RabbitTestCase +------------------------------------------------------------------------------- +Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.001 s -- in PrepSession.RabbitTestCase diff --git a/target/surefire-reports/TEST-PrepSession.AppTest.xml b/target/surefire-reports/TEST-PrepSession.AppTest.xml new file mode 100644 index 0000000..872743c --- /dev/null +++ b/target/surefire-reports/TEST-PrepSession.AppTest.xml @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/target/surefire-reports/TEST-PrepSession.EagleTestCase.xml b/target/surefire-reports/TEST-PrepSession.EagleTestCase.xml new file mode 100644 index 0000000..47ff850 --- /dev/null +++ b/target/surefire-reports/TEST-PrepSession.EagleTestCase.xml @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/target/surefire-reports/TEST-PrepSession.FishTestCase.xml b/target/surefire-reports/TEST-PrepSession.FishTestCase.xml new file mode 100644 index 0000000..9ceab0f --- /dev/null +++ b/target/surefire-reports/TEST-PrepSession.FishTestCase.xml @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/target/surefire-reports/TEST-PrepSession.RabbitTestCase.xml b/target/surefire-reports/TEST-PrepSession.RabbitTestCase.xml new file mode 100644 index 0000000..840c31b --- /dev/null +++ b/target/surefire-reports/TEST-PrepSession.RabbitTestCase.xml @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/target/test-classes/PrepSession/AppTest.class b/target/test-classes/PrepSession/AppTest.class new file mode 100644 index 0000000000000000000000000000000000000000..d028e588ecc5389c1d0c053a6b4f81f068881d0c GIT binary patch literal 601 zcmZuuO-sW-6r63-#>V(nZT(ghg;v2F^i~n1;3q znYmC$+V12JQtw!8tT9@S_W?-tWV{Qa^#hiOi$7?+cgbwE;Jjk|uk{8TZ2nmL O{icDnz%oa2SosDkSa?qW literal 0 HcmV?d00001 diff --git a/target/test-classes/PrepSession/EagleTestCase.class b/target/test-classes/PrepSession/EagleTestCase.class new file mode 100644 index 0000000000000000000000000000000000000000..e04aeaf9d9850537c3dd29a58eef1c0a0993f521 GIT binary patch literal 1053 zcmZ`&ZBG+H5Pr54u00PZ1rlYZ8n~@TG z#5fX)k{AZhLE6d~3=2aJZfMErqEfuJEB$&3HyP$D+rl-XTp79bfc$PPgc+6DMlgrc-ExZOx0srD+&B2YE~~SPi))-o?}u zwyXuUEII&&*4dYT?}`qDHjB2tSy5)8@3V3UsClJqsoh6pQsqd}f*DX8&Am4{M) zpE#3>I>9hp`Y&REbei6NP*kH>sT3FAP?c@|d6!n=avsH}1+TXz#4vWY6aU;UiXM6& z`%3PKs*EHNEBbz*xS~BJUYXK)i?u`wx645s*2HURG#O^6;%D^wVH`8`gXkv#>KeMp zKAI7rw`G4gzVG-2D8J{2N*fRxIOg)6JL)obzW(dh75Egg&t(ki(#^3=tB-!%woVW ja9dSQ7^EMGmP2lBUve)^! literal 0 HcmV?d00001 diff --git a/target/test-classes/PrepSession/FishTestCase.class b/target/test-classes/PrepSession/FishTestCase.class new file mode 100644 index 0000000000000000000000000000000000000000..647a256d431f5a25226a78b9f6ab8d6e74b7e159 GIT binary patch literal 1230 zcmb7@YflqF6o%hvfi3F-rGQedi#J+8ii+1FNhJ_JR3Vl$;S(9!p&i)n;_j?T zk*Fw!zBTDewayUFWXlE;AATr8PrV}I>{Y|=_p=$x%W*a3ck;q+o3uM zRZ01RH%yq?Z;)Z+(r?F?ZfAD@NzF0Lkj@k@J-QR*vt<(_7&S0v;V$m|1zc(dN;C*K z5Q>5r#;=lem5Fi~NL!fDiu*pus&s1!OfjtN)`fjYf@~SsHIK}8RfrSe+sd=+vPzr2 z*RU0NZStBUOf6`}!Ypitgz`uw#W0L!vMv0mku7W9#C<$4@X*2|JSK3@ujP(HYHh9% z1i~j?i$^b;UqbE#4D)ULuG7eOrEQ&0TTRA7R;%eRD8(zsk)TC}xsD(n*+tdncF^FC zLz=Wu)4&sI)b#`16@l8|fney_@T#;76{Raag^dH@@A3nOEUBVb;ZB+RQh&FNJ*qB= ze4=<;!aT#2qU8I!_`Yswupfk#3Jud?=r~O(sCRVw>nSMI^g^}axk|Xyt=Z0m+&F9G zp8g!VN;X7U29g*HuInkTXlMyBS-k4MR!iiEfhq#liGlqW@+3%F)Vb?Oiwn`%W)0G9lUq4bKX_TP+7X#WVV1cuu>q zDEJ#Ci<2#T0b}nB{lyEIv|1l8FtE3DhM{w$7Edvrnp`@?^f~6P3eap*;2;thMiMDZ z(zThzC^8s}irTHj?V<_dU&RY5of% z7a)@O1N>3O**l;$Vw=p|?#w*%JUjF2_m7_d*73qc23ZFq9!8O4C>-)HJm_+@A8fS` zMaMAYUP>j+D~4>P+H#O*C~j+U)DTf5Llx}sc3T=3j)l3-u#h0gFnHZJVnb`*--^vq zY#K%j-gDvFym5x9i@a?u)n#-H1cpJ%rh)E4}_me@@3@fSSbqmUHM7)9nHV?eG~cz za!;(eR?2M;W%vwv6Oum4WSFj0Q{u@Zrnfa0cW~FiJrDQsfGCH0KRAr(S%Zxz5}KHL zJo$L@Ip*DnVdQadhajz|OlefEc zQ>=#_-feL$?fLw2#2iR!KVSbpWR1Ym7y3BplGDi=ko+quslp9ovl%KQ6lpDAPWH+j zq4d&Dtc>i5mW(8k+fXVr+|araw?cjJdX|7iZ-lY#h_}+}no7xCa9gumghedTqT62v z%&t1wDxCuIjQr^G3E1}}yiC@HLGxW9>!k@;#X~wVtWh+R6n{gO{y_B%&h81W)z9FP z_uijjY