From 398ac5b8568a556a0d875b4f70e9ef265fe93cd6 Mon Sep 17 00:00:00 2001 From: Gerrit Grunwald Date: Wed, 28 Oct 2020 12:08:03 +0100 Subject: [PATCH 1/7] Added github action to mvn test on each push On each push mvn test will run on Ubuntu 18.04, latest Mac OS and lastest Windows using JDK 8, 11 and 15. --- java8/.github/workflows/ci.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 java8/.github/workflows/ci.yml diff --git a/java8/.github/workflows/ci.yml b/java8/.github/workflows/ci.yml new file mode 100644 index 00000000..f4825a67 --- /dev/null +++ b/java8/.github/workflows/ci.yml @@ -0,0 +1,26 @@ +--- +name: Java CI + +on: [push] + +jobs: + test: + runs-on: ${{ matrix.os }} + strategy: + matrix: + os: [ubuntu-18.04, macOS-latest, windows-latest] + java: [8, 11, 15] + fail-fast: false + max-parallel: 4 + name: Test JDK ${{ matrix.java }}, ${{ matrix.os }} + + steps: + - uses: actions/checkout@v1 + - name: Set up JDK + uses: actions/setup-java@v1 + with: + java-version: ${{ matrix.java }} + - name: Test with Maven + run: mvn test -B --file pom.xml + +... \ No newline at end of file From eaf689b5754d468d05b7d3d3fde083bed7ce4c0a Mon Sep 17 00:00:00 2001 From: Gerrit Grunwald Date: Wed, 28 Oct 2020 12:10:07 +0100 Subject: [PATCH 2/7] Moved files to root folder --- {java8/.github => .github}/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename {java8/.github => .github}/workflows/ci.yml (91%) diff --git a/java8/.github/workflows/ci.yml b/.github/workflows/ci.yml similarity index 91% rename from java8/.github/workflows/ci.yml rename to .github/workflows/ci.yml index f4825a67..72205f70 100644 --- a/java8/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -21,6 +21,6 @@ jobs: with: java-version: ${{ matrix.java }} - name: Test with Maven - run: mvn test -B --file pom.xml + run: mvn test -B --file java8/pom.xml ... \ No newline at end of file From 55d3b50252c29292abdb46d7087d379451dd121c Mon Sep 17 00:00:00 2001 From: Gerrit Grunwald Date: Wed, 28 Oct 2020 12:19:05 +0100 Subject: [PATCH 3/7] Run tests on JDK8 --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 72205f70..12f87670 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,7 +9,7 @@ jobs: strategy: matrix: os: [ubuntu-18.04, macOS-latest, windows-latest] - java: [8, 11, 15] + java: [8] fail-fast: false max-parallel: 4 name: Test JDK ${{ matrix.java }}, ${{ matrix.os }} From 082cce2f431c2d18284ac277169147833cf739ce Mon Sep 17 00:00:00 2001 From: Gerrit Grunwald Date: Wed, 28 Oct 2020 12:22:21 +0100 Subject: [PATCH 4/7] Run on latest ubuntu an also use JDK 8, 11, and 15 --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 12f87670..483961e0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,8 +8,8 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - os: [ubuntu-18.04, macOS-latest, windows-latest] - java: [8] + os: [ubuntu-latest, macOS-latest, windows-latest] + java: [8, 11, 15] fail-fast: false max-parallel: 4 name: Test JDK ${{ matrix.java }}, ${{ matrix.os }} From ae42996523b14fc1be04b7231619b9e545ece2b5 Mon Sep 17 00:00:00 2001 From: Gerrit Grunwald Date: Wed, 28 Oct 2020 18:26:09 +0100 Subject: [PATCH 5/7] Adjusted build files --- java8/build.gradle | 6 ++--- java8/pom.xml | 24 ++++++++++++------- .../_01_lists/P07Test.java | 3 ++- 3 files changed, 20 insertions(+), 13 deletions(-) diff --git a/java8/build.gradle b/java8/build.gradle index 26934916..8f49038d 100644 --- a/java8/build.gradle +++ b/java8/build.gradle @@ -3,13 +3,13 @@ version '1.0-SNAPSHOT' apply plugin: 'java' -sourceCompatibility = 1.8 +//sourceCompatibility = 1.8 repositories { mavenCentral() } dependencies { - testCompile group: 'junit', name: 'junit', version: '4.12' - testCompile 'org.hamcrest:hamcrest-all:1.3' + testCompile group: 'junit', name: 'junit', version: '4.13.1' + testCompile 'org.hamcrest:hamcrest:2.2' } diff --git a/java8/pom.xml b/java8/pom.xml index d62285c0..01f47d15 100644 --- a/java8/pom.xml +++ b/java8/pom.xml @@ -7,24 +7,30 @@ 99-problems 1.0-SNAPSHOT jar - - - UTF-8 - 1.8 - 1.8 - + + + + org.apache.maven.plugins + maven-compiler-plugin + + 8 + 8 + + + + junit junit - 4.12 + 4.13.1 test org.hamcrest - hamcrest-all - 1.3 + hamcrest + 2.2 test diff --git a/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P07Test.java b/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P07Test.java index aa044306..43c56384 100644 --- a/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P07Test.java +++ b/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P07Test.java @@ -6,10 +6,11 @@ import java.util.List; import static java.util.Arrays.asList; -import static org.hamcrest.CoreMatchers.hasItems; import static org.hamcrest.collection.IsCollectionWithSize.hasSize; import static org.junit.Assert.assertThat; import static org.junit.Assert.assertTrue; +import static org.junit.matchers.JUnitMatchers.hasItems; + public class P07Test { From 44c41271404f16ee489e4b4b412b0ab936d6eeb1 Mon Sep 17 00:00:00 2001 From: Gerrit Grunwald Date: Wed, 28 Oct 2020 18:36:35 +0100 Subject: [PATCH 6/7] Fixed some tests due to new JUnit version --- .../codegolf/AcronymMakerTest.java | 2 +- .../fortytwo_problems/Problem01Test.java | 2 +- .../shekhargulati/leetcode/Problem01Test.java | 2 +- .../shekhargulati/leetcode/Problem03Test.java | 2 +- .../leetcode/algorithms/Problem05Test.java | 2 +- .../_01_lists/P01Test.java | 2 +- .../_01_lists/P02Test.java | 2 +- .../_01_lists/P03Test.java | 2 +- .../_01_lists/P04Test.java | 2 +- .../_01_lists/P05Test.java | 2 +- .../_01_lists/P07Test.java | 2 +- .../_01_lists/P08Test.java | 2 +- .../_01_lists/P09Test.java | 2 +- .../_01_lists/P10Test.java | 2 +- .../_01_lists/P11Test.java | 2 +- .../_01_lists/P12Test.java | 2 +- .../_01_lists/P13Test.java | 2 +- .../_01_lists/P14Test.java | 2 +- .../_01_lists/P15Test.java | 2 +- .../_01_lists/P16Test.java | 2 +- .../_01_lists/P17Test.java | 2 +- .../_01_lists/P18Test.java | 2 +- .../_01_lists/P19Test.java | 2 +- .../_01_lists/P20Test.java | 2 +- .../_01_lists/P21Test.java | 2 +- .../_01_lists/P22Test.java | 2 +- .../_01_lists/P23Test.java | 2 +- .../_01_lists/P24Test.java | 2 +- .../_01_lists/P25Test.java | 2 +- .../_01_lists/P26Test.java | 2 +- .../_01_lists/P27Test.java | 2 +- .../_01_lists/P28Test.java | 2 +- .../_02_arithmetic/P32Test.java | 2 +- .../_02_arithmetic/P33Test.java | 2 +- .../_02_arithmetic/P34Test.java | 2 +- .../_02_arithmetic/P35Test.java | 2 +- .../_02_arithmetic/P36Test.java | 2 +- .../_02_arithmetic/P37Test.java | 2 +- .../_02_arithmetic/P39Test.java | 2 +- .../_02_arithmetic/P40Test.java | 2 +- .../_02_arithmetic/P41Test.java | 2 +- .../_03_logic_and_codes/P46Test.java | 2 +- .../_03_logic_and_codes/P49Test.java | 2 +- .../random/RandomProblem003Test.java | 2 +- .../random/RandomProblem004Test.java | 2 +- .../tadm/ch03/Problem3_2Test.java | 2 +- .../tadm/ch04/examples/SelectionSortTest.java | 2 +- .../tadm/ch04/excercises/Problem4_1Test.java | 2 +- .../tadm/ch04/excercises/Problem4_2Test.java | 2 +- .../tadm/ch04/excercises/Problem4_5Test.java | 2 +- .../compile/default-compile/createdFiles.lst | 76 ++++ .../compile/default-compile/inputFiles.lst | 68 ++++ .../default-testCompile/createdFiles.lst | 57 +++ .../default-testCompile/inputFiles.lst | 57 +++ ...hekhargulati.codegolf.AcronymMakerTest.xml | 65 ++++ ...gulati.fortytwo_problems.Problem01Test.xml | 62 ++++ ...m.shekhargulati.leetcode.Problem01Test.xml | 66 ++++ ...m.shekhargulati.leetcode.Problem03Test.xml | 63 ++++ ...lati.leetcode.algorithms.Problem05Test.xml | 66 ++++ ....ninetynine_problems._01_lists.P01Test.xml | 64 ++++ ....ninetynine_problems._01_lists.P02Test.xml | 65 ++++ ....ninetynine_problems._01_lists.P03Test.xml | 64 ++++ ....ninetynine_problems._01_lists.P04Test.xml | 65 ++++ ....ninetynine_problems._01_lists.P05Test.xml | 64 ++++ ....ninetynine_problems._01_lists.P06Test.xml | 65 ++++ ....ninetynine_problems._01_lists.P07Test.xml | 67 ++++ ....ninetynine_problems._01_lists.P08Test.xml | 63 ++++ ....ninetynine_problems._01_lists.P09Test.xml | 64 ++++ ....ninetynine_problems._01_lists.P10Test.xml | 62 ++++ ....ninetynine_problems._01_lists.P11Test.xml | 62 ++++ ....ninetynine_problems._01_lists.P12Test.xml | 62 ++++ ....ninetynine_problems._01_lists.P13Test.xml | 62 ++++ ....ninetynine_problems._01_lists.P14Test.xml | 62 ++++ ....ninetynine_problems._01_lists.P15Test.xml | 62 ++++ ....ninetynine_problems._01_lists.P16Test.xml | 64 ++++ ....ninetynine_problems._01_lists.P17Test.xml | 62 ++++ ....ninetynine_problems._01_lists.P18Test.xml | 62 ++++ ....ninetynine_problems._01_lists.P19Test.xml | 64 ++++ ....ninetynine_problems._01_lists.P20Test.xml | 63 ++++ ....ninetynine_problems._01_lists.P21Test.xml | 67 ++++ ....ninetynine_problems._01_lists.P22Test.xml | 62 ++++ ....ninetynine_problems._01_lists.P23Test.xml | 64 ++++ ....ninetynine_problems._01_lists.P24Test.xml | 62 ++++ ....ninetynine_problems._01_lists.P25Test.xml | 62 ++++ ....ninetynine_problems._01_lists.P26Test.xml | 64 ++++ ....ninetynine_problems._01_lists.P27Test.xml | 65 ++++ ....ninetynine_problems._01_lists.P28Test.xml | 63 ++++ ...tynine_problems._02_arithmetic.P31Test.xml | 63 ++++ ...tynine_problems._02_arithmetic.P32Test.xml | 63 ++++ ...tynine_problems._02_arithmetic.P33Test.xml | 63 ++++ ...tynine_problems._02_arithmetic.P34Test.xml | 65 ++++ ...tynine_problems._02_arithmetic.P35Test.xml | 64 ++++ ...tynine_problems._02_arithmetic.P36Test.xml | 63 ++++ ...tynine_problems._02_arithmetic.P37Test.xml | 62 ++++ ...tynine_problems._02_arithmetic.P38Test.xml | 62 ++++ ...tynine_problems._02_arithmetic.P39Test.xml | 62 ++++ ...tynine_problems._02_arithmetic.P40Test.xml | 63 ++++ ...tynine_problems._02_arithmetic.P41Test.xml | 63 ++++ ...e_problems._03_logic_and_codes.P46Test.xml | 62 ++++ ...e_problems._03_logic_and_codes.P49Test.xml | 64 ++++ ...khargulati.random.RandomProblem002Test.xml | 63 ++++ ...khargulati.random.RandomProblem003Test.xml | 62 ++++ ...khargulati.random.RandomProblem004Test.xml | 64 ++++ ...ti.random.algebra.RandomProblem005Test.xml | 62 ++++ ...shekhargulati.tadm.ch03.Problem3_1Test.xml | 68 ++++ ...shekhargulati.tadm.ch03.Problem3_2Test.xml | 62 ++++ ...i.tadm.ch04.examples.SelectionSortTest.xml | 62 ++++ ...ti.tadm.ch04.excercises.Problem4_1Test.xml | 62 ++++ ...ti.tadm.ch04.excercises.Problem4_2Test.xml | 65 ++++ ...ti.tadm.ch04.excercises.Problem4_5Test.xml | 62 ++++ ...ti.tadm.ch04.excercises.Problem4_6Test.xml | 62 ++++ ...hekhargulati.codegolf.AcronymMakerTest.txt | 4 + ...gulati.fortytwo_problems.Problem01Test.txt | 4 + ...m.shekhargulati.leetcode.Problem01Test.txt | 4 + ...m.shekhargulati.leetcode.Problem03Test.txt | 4 + ...lati.leetcode.algorithms.Problem05Test.txt | 4 + ....ninetynine_problems._01_lists.P01Test.txt | 4 + ....ninetynine_problems._01_lists.P02Test.txt | 4 + ....ninetynine_problems._01_lists.P03Test.txt | 4 + ....ninetynine_problems._01_lists.P04Test.txt | 4 + ....ninetynine_problems._01_lists.P05Test.txt | 4 + ....ninetynine_problems._01_lists.P06Test.txt | 4 + ....ninetynine_problems._01_lists.P07Test.txt | 4 + ....ninetynine_problems._01_lists.P08Test.txt | 4 + ....ninetynine_problems._01_lists.P09Test.txt | 4 + ....ninetynine_problems._01_lists.P10Test.txt | 4 + ....ninetynine_problems._01_lists.P11Test.txt | 4 + ....ninetynine_problems._01_lists.P12Test.txt | 4 + ....ninetynine_problems._01_lists.P13Test.txt | 4 + ....ninetynine_problems._01_lists.P14Test.txt | 4 + ....ninetynine_problems._01_lists.P15Test.txt | 4 + ....ninetynine_problems._01_lists.P16Test.txt | 4 + ....ninetynine_problems._01_lists.P17Test.txt | 4 + ....ninetynine_problems._01_lists.P18Test.txt | 4 + ....ninetynine_problems._01_lists.P19Test.txt | 4 + ....ninetynine_problems._01_lists.P20Test.txt | 4 + ....ninetynine_problems._01_lists.P21Test.txt | 4 + ....ninetynine_problems._01_lists.P22Test.txt | 4 + ....ninetynine_problems._01_lists.P23Test.txt | 4 + ....ninetynine_problems._01_lists.P24Test.txt | 4 + ....ninetynine_problems._01_lists.P25Test.txt | 4 + ....ninetynine_problems._01_lists.P26Test.txt | 4 + ....ninetynine_problems._01_lists.P27Test.txt | 4 + ....ninetynine_problems._01_lists.P28Test.txt | 4 + ...tynine_problems._02_arithmetic.P31Test.txt | 4 + ...tynine_problems._02_arithmetic.P32Test.txt | 4 + ...tynine_problems._02_arithmetic.P33Test.txt | 4 + ...tynine_problems._02_arithmetic.P34Test.txt | 4 + ...tynine_problems._02_arithmetic.P35Test.txt | 4 + ...tynine_problems._02_arithmetic.P36Test.txt | 4 + ...tynine_problems._02_arithmetic.P37Test.txt | 4 + ...tynine_problems._02_arithmetic.P38Test.txt | 4 + ...tynine_problems._02_arithmetic.P39Test.txt | 4 + ...tynine_problems._02_arithmetic.P40Test.txt | 4 + ...tynine_problems._02_arithmetic.P41Test.txt | 4 + ...e_problems._03_logic_and_codes.P46Test.txt | 4 + ...e_problems._03_logic_and_codes.P49Test.txt | 4 + ...khargulati.random.RandomProblem002Test.txt | 4 + ...khargulati.random.RandomProblem003Test.txt | 4 + ...khargulati.random.RandomProblem004Test.txt | 4 + ...ti.random.algebra.RandomProblem005Test.txt | 4 + ...shekhargulati.tadm.ch03.Problem3_1Test.txt | 4 + ...shekhargulati.tadm.ch03.Problem3_2Test.txt | 4 + ...i.tadm.ch04.examples.SelectionSortTest.txt | 4 + ...ti.tadm.ch04.excercises.Problem4_1Test.txt | 4 + ...ti.tadm.ch04.excercises.Problem4_2Test.txt | 4 + ...ti.tadm.ch04.excercises.Problem4_5Test.txt | 4 + ...ti.tadm.ch04.excercises.Problem4_6Test.txt | 4 + java8/target/test-classes/book.txt | 327 ++++++++++++++++++ 169 files changed, 4475 insertions(+), 50 deletions(-) create mode 100644 java8/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst create mode 100644 java8/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst create mode 100644 java8/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst create mode 100644 java8/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst create mode 100644 java8/target/surefire-reports/TEST-com.shekhargulati.codegolf.AcronymMakerTest.xml create mode 100644 java8/target/surefire-reports/TEST-com.shekhargulati.fortytwo_problems.Problem01Test.xml create mode 100644 java8/target/surefire-reports/TEST-com.shekhargulati.leetcode.Problem01Test.xml create mode 100644 java8/target/surefire-reports/TEST-com.shekhargulati.leetcode.Problem03Test.xml create mode 100644 java8/target/surefire-reports/TEST-com.shekhargulati.leetcode.algorithms.Problem05Test.xml create mode 100644 java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._01_lists.P01Test.xml create mode 100644 java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._01_lists.P02Test.xml create mode 100644 java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._01_lists.P03Test.xml create mode 100644 java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._01_lists.P04Test.xml create mode 100644 java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._01_lists.P05Test.xml create mode 100644 java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._01_lists.P06Test.xml create mode 100644 java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._01_lists.P07Test.xml create mode 100644 java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._01_lists.P08Test.xml create mode 100644 java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._01_lists.P09Test.xml create mode 100644 java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._01_lists.P10Test.xml create mode 100644 java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._01_lists.P11Test.xml create mode 100644 java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._01_lists.P12Test.xml create mode 100644 java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._01_lists.P13Test.xml create mode 100644 java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._01_lists.P14Test.xml create mode 100644 java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._01_lists.P15Test.xml create mode 100644 java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._01_lists.P16Test.xml create mode 100644 java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._01_lists.P17Test.xml create mode 100644 java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._01_lists.P18Test.xml create mode 100644 java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._01_lists.P19Test.xml create mode 100644 java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._01_lists.P20Test.xml create mode 100644 java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._01_lists.P21Test.xml create mode 100644 java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._01_lists.P22Test.xml create mode 100644 java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._01_lists.P23Test.xml create mode 100644 java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._01_lists.P24Test.xml create mode 100644 java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._01_lists.P25Test.xml create mode 100644 java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._01_lists.P26Test.xml create mode 100644 java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._01_lists.P27Test.xml create mode 100644 java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._01_lists.P28Test.xml create mode 100644 java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._02_arithmetic.P31Test.xml create mode 100644 java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._02_arithmetic.P32Test.xml create mode 100644 java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._02_arithmetic.P33Test.xml create mode 100644 java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._02_arithmetic.P34Test.xml create mode 100644 java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._02_arithmetic.P35Test.xml create mode 100644 java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._02_arithmetic.P36Test.xml create mode 100644 java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._02_arithmetic.P37Test.xml create mode 100644 java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._02_arithmetic.P38Test.xml create mode 100644 java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._02_arithmetic.P39Test.xml create mode 100644 java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._02_arithmetic.P40Test.xml create mode 100644 java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._02_arithmetic.P41Test.xml create mode 100644 java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._03_logic_and_codes.P46Test.xml create mode 100644 java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._03_logic_and_codes.P49Test.xml create mode 100644 java8/target/surefire-reports/TEST-com.shekhargulati.random.RandomProblem002Test.xml create mode 100644 java8/target/surefire-reports/TEST-com.shekhargulati.random.RandomProblem003Test.xml create mode 100644 java8/target/surefire-reports/TEST-com.shekhargulati.random.RandomProblem004Test.xml create mode 100644 java8/target/surefire-reports/TEST-com.shekhargulati.random.algebra.RandomProblem005Test.xml create mode 100644 java8/target/surefire-reports/TEST-com.shekhargulati.tadm.ch03.Problem3_1Test.xml create mode 100644 java8/target/surefire-reports/TEST-com.shekhargulati.tadm.ch03.Problem3_2Test.xml create mode 100644 java8/target/surefire-reports/TEST-com.shekhargulati.tadm.ch04.examples.SelectionSortTest.xml create mode 100644 java8/target/surefire-reports/TEST-com.shekhargulati.tadm.ch04.excercises.Problem4_1Test.xml create mode 100644 java8/target/surefire-reports/TEST-com.shekhargulati.tadm.ch04.excercises.Problem4_2Test.xml create mode 100644 java8/target/surefire-reports/TEST-com.shekhargulati.tadm.ch04.excercises.Problem4_5Test.xml create mode 100644 java8/target/surefire-reports/TEST-com.shekhargulati.tadm.ch04.excercises.Problem4_6Test.xml create mode 100644 java8/target/surefire-reports/com.shekhargulati.codegolf.AcronymMakerTest.txt create mode 100644 java8/target/surefire-reports/com.shekhargulati.fortytwo_problems.Problem01Test.txt create mode 100644 java8/target/surefire-reports/com.shekhargulati.leetcode.Problem01Test.txt create mode 100644 java8/target/surefire-reports/com.shekhargulati.leetcode.Problem03Test.txt create mode 100644 java8/target/surefire-reports/com.shekhargulati.leetcode.algorithms.Problem05Test.txt create mode 100644 java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._01_lists.P01Test.txt create mode 100644 java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._01_lists.P02Test.txt create mode 100644 java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._01_lists.P03Test.txt create mode 100644 java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._01_lists.P04Test.txt create mode 100644 java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._01_lists.P05Test.txt create mode 100644 java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._01_lists.P06Test.txt create mode 100644 java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._01_lists.P07Test.txt create mode 100644 java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._01_lists.P08Test.txt create mode 100644 java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._01_lists.P09Test.txt create mode 100644 java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._01_lists.P10Test.txt create mode 100644 java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._01_lists.P11Test.txt create mode 100644 java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._01_lists.P12Test.txt create mode 100644 java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._01_lists.P13Test.txt create mode 100644 java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._01_lists.P14Test.txt create mode 100644 java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._01_lists.P15Test.txt create mode 100644 java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._01_lists.P16Test.txt create mode 100644 java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._01_lists.P17Test.txt create mode 100644 java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._01_lists.P18Test.txt create mode 100644 java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._01_lists.P19Test.txt create mode 100644 java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._01_lists.P20Test.txt create mode 100644 java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._01_lists.P21Test.txt create mode 100644 java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._01_lists.P22Test.txt create mode 100644 java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._01_lists.P23Test.txt create mode 100644 java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._01_lists.P24Test.txt create mode 100644 java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._01_lists.P25Test.txt create mode 100644 java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._01_lists.P26Test.txt create mode 100644 java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._01_lists.P27Test.txt create mode 100644 java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._01_lists.P28Test.txt create mode 100644 java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._02_arithmetic.P31Test.txt create mode 100644 java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._02_arithmetic.P32Test.txt create mode 100644 java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._02_arithmetic.P33Test.txt create mode 100644 java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._02_arithmetic.P34Test.txt create mode 100644 java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._02_arithmetic.P35Test.txt create mode 100644 java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._02_arithmetic.P36Test.txt create mode 100644 java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._02_arithmetic.P37Test.txt create mode 100644 java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._02_arithmetic.P38Test.txt create mode 100644 java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._02_arithmetic.P39Test.txt create mode 100644 java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._02_arithmetic.P40Test.txt create mode 100644 java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._02_arithmetic.P41Test.txt create mode 100644 java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._03_logic_and_codes.P46Test.txt create mode 100644 java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._03_logic_and_codes.P49Test.txt create mode 100644 java8/target/surefire-reports/com.shekhargulati.random.RandomProblem002Test.txt create mode 100644 java8/target/surefire-reports/com.shekhargulati.random.RandomProblem003Test.txt create mode 100644 java8/target/surefire-reports/com.shekhargulati.random.RandomProblem004Test.txt create mode 100644 java8/target/surefire-reports/com.shekhargulati.random.algebra.RandomProblem005Test.txt create mode 100644 java8/target/surefire-reports/com.shekhargulati.tadm.ch03.Problem3_1Test.txt create mode 100644 java8/target/surefire-reports/com.shekhargulati.tadm.ch03.Problem3_2Test.txt create mode 100644 java8/target/surefire-reports/com.shekhargulati.tadm.ch04.examples.SelectionSortTest.txt create mode 100644 java8/target/surefire-reports/com.shekhargulati.tadm.ch04.excercises.Problem4_1Test.txt create mode 100644 java8/target/surefire-reports/com.shekhargulati.tadm.ch04.excercises.Problem4_2Test.txt create mode 100644 java8/target/surefire-reports/com.shekhargulati.tadm.ch04.excercises.Problem4_5Test.txt create mode 100644 java8/target/surefire-reports/com.shekhargulati.tadm.ch04.excercises.Problem4_6Test.txt create mode 100644 java8/target/test-classes/book.txt diff --git a/java8/src/test/java/com/shekhargulati/codegolf/AcronymMakerTest.java b/java8/src/test/java/com/shekhargulati/codegolf/AcronymMakerTest.java index 687fcb55..57c123af 100644 --- a/java8/src/test/java/com/shekhargulati/codegolf/AcronymMakerTest.java +++ b/java8/src/test/java/com/shekhargulati/codegolf/AcronymMakerTest.java @@ -3,7 +3,7 @@ import org.junit.Test; import static org.hamcrest.CoreMatchers.equalTo; -import static org.junit.Assert.assertThat; +import static org.hamcrest.MatcherAssert.assertThat; public class AcronymMakerTest { diff --git a/java8/src/test/java/com/shekhargulati/fortytwo_problems/Problem01Test.java b/java8/src/test/java/com/shekhargulati/fortytwo_problems/Problem01Test.java index 62696c16..d2ea086c 100644 --- a/java8/src/test/java/com/shekhargulati/fortytwo_problems/Problem01Test.java +++ b/java8/src/test/java/com/shekhargulati/fortytwo_problems/Problem01Test.java @@ -6,7 +6,7 @@ import java.util.List; import static org.hamcrest.collection.IsIterableContainingInOrder.contains; -import static org.junit.Assert.assertThat; +import static org.hamcrest.MatcherAssert.assertThat; public class Problem01Test { diff --git a/java8/src/test/java/com/shekhargulati/leetcode/Problem01Test.java b/java8/src/test/java/com/shekhargulati/leetcode/Problem01Test.java index c697f328..0578242f 100644 --- a/java8/src/test/java/com/shekhargulati/leetcode/Problem01Test.java +++ b/java8/src/test/java/com/shekhargulati/leetcode/Problem01Test.java @@ -7,7 +7,7 @@ import java.util.Random; import static org.hamcrest.CoreMatchers.equalTo; -import static org.junit.Assert.assertThat; +import static org.hamcrest.MatcherAssert.assertThat; import static org.junit.Assert.assertTrue; public class Problem01Test { diff --git a/java8/src/test/java/com/shekhargulati/leetcode/Problem03Test.java b/java8/src/test/java/com/shekhargulati/leetcode/Problem03Test.java index c2d4515f..e677c996 100644 --- a/java8/src/test/java/com/shekhargulati/leetcode/Problem03Test.java +++ b/java8/src/test/java/com/shekhargulati/leetcode/Problem03Test.java @@ -4,7 +4,7 @@ import org.junit.Test; import static org.hamcrest.CoreMatchers.equalTo; -import static org.junit.Assert.assertThat; +import static org.hamcrest.MatcherAssert.assertThat; public class Problem03Test { diff --git a/java8/src/test/java/com/shekhargulati/leetcode/algorithms/Problem05Test.java b/java8/src/test/java/com/shekhargulati/leetcode/algorithms/Problem05Test.java index 3e0c40b5..632c6293 100644 --- a/java8/src/test/java/com/shekhargulati/leetcode/algorithms/Problem05Test.java +++ b/java8/src/test/java/com/shekhargulati/leetcode/algorithms/Problem05Test.java @@ -3,7 +3,7 @@ import org.junit.Test; import static org.hamcrest.CoreMatchers.equalTo; -import static org.junit.Assert.assertThat; +import static org.hamcrest.MatcherAssert.assertThat; public class Problem05Test { diff --git a/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P01Test.java b/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P01Test.java index c36d3ff7..48415ffa 100644 --- a/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P01Test.java +++ b/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P01Test.java @@ -8,7 +8,7 @@ import static java.util.Arrays.asList; import static org.hamcrest.CoreMatchers.equalTo; import static org.hamcrest.CoreMatchers.is; -import static org.junit.Assert.assertThat; +import static org.hamcrest.MatcherAssert.assertThat; public class P01Test { diff --git a/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P02Test.java b/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P02Test.java index a1529036..033e1793 100644 --- a/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P02Test.java +++ b/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P02Test.java @@ -8,7 +8,7 @@ import static java.util.Arrays.asList; import static org.hamcrest.CoreMatchers.equalTo; import static org.hamcrest.CoreMatchers.is; -import static org.junit.Assert.assertThat; +import static org.hamcrest.MatcherAssert.assertThat; public class P02Test { diff --git a/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P03Test.java b/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P03Test.java index c7a44cbc..ae24de60 100644 --- a/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P03Test.java +++ b/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P03Test.java @@ -9,7 +9,7 @@ import static com.shekhargulati.ninetynine_problems._01_lists.CollectionUtils.linkedList; import static org.hamcrest.CoreMatchers.equalTo; import static org.hamcrest.CoreMatchers.is; -import static org.junit.Assert.assertThat; +import static org.hamcrest.MatcherAssert.assertThat; public class P03Test { diff --git a/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P04Test.java b/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P04Test.java index dc00b444..dda75891 100644 --- a/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P04Test.java +++ b/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P04Test.java @@ -7,7 +7,7 @@ import static org.hamcrest.CoreMatchers.equalTo; import static org.hamcrest.CoreMatchers.is; -import static org.junit.Assert.assertThat; +import static org.hamcrest.MatcherAssert.assertThat; public class P04Test { diff --git a/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P05Test.java b/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P05Test.java index 8a014912..48128f10 100644 --- a/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P05Test.java +++ b/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P05Test.java @@ -9,7 +9,7 @@ import static com.shekhargulati.ninetynine_problems._01_lists.CollectionUtils.arrayDeque; import static org.hamcrest.CoreMatchers.equalTo; import static org.hamcrest.CoreMatchers.is; -import static org.junit.Assert.assertThat; +import static org.hamcrest.MatcherAssert.assertThat; public class P05Test { diff --git a/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P07Test.java b/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P07Test.java index 43c56384..0823910c 100644 --- a/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P07Test.java +++ b/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P07Test.java @@ -7,7 +7,7 @@ import static java.util.Arrays.asList; import static org.hamcrest.collection.IsCollectionWithSize.hasSize; -import static org.junit.Assert.assertThat; +import static org.hamcrest.MatcherAssert.assertThat; import static org.junit.Assert.assertTrue; import static org.junit.matchers.JUnitMatchers.hasItems; diff --git a/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P08Test.java b/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P08Test.java index a79c0c61..917f21e5 100644 --- a/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P08Test.java +++ b/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P08Test.java @@ -7,7 +7,7 @@ import static java.util.Arrays.asList; import static org.hamcrest.collection.IsCollectionWithSize.hasSize; import static org.hamcrest.collection.IsIterableContainingInOrder.contains; -import static org.junit.Assert.assertThat; +import static org.hamcrest.MatcherAssert.assertThat; public class P08Test { diff --git a/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P09Test.java b/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P09Test.java index 0a507013..ac8ff6cd 100644 --- a/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P09Test.java +++ b/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P09Test.java @@ -7,7 +7,7 @@ import static org.hamcrest.collection.IsCollectionWithSize.hasSize; import static org.hamcrest.collection.IsIterableContainingInOrder.contains; -import static org.junit.Assert.assertThat; +import static org.hamcrest.MatcherAssert.assertThat; public class P09Test { diff --git a/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P10Test.java b/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P10Test.java index bce5866f..5ddff2ff 100644 --- a/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P10Test.java +++ b/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P10Test.java @@ -9,7 +9,7 @@ import static org.hamcrest.CoreMatchers.equalTo; import static org.hamcrest.CoreMatchers.is; import static org.hamcrest.collection.IsCollectionWithSize.hasSize; -import static org.junit.Assert.assertThat; +import static org.hamcrest.MatcherAssert.assertThat; public class P10Test { diff --git a/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P11Test.java b/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P11Test.java index 8d336e92..494dd684 100644 --- a/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P11Test.java +++ b/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P11Test.java @@ -9,7 +9,7 @@ import static org.hamcrest.CoreMatchers.equalTo; import static org.hamcrest.CoreMatchers.is; import static org.hamcrest.collection.IsCollectionWithSize.hasSize; -import static org.junit.Assert.assertThat; +import static org.hamcrest.MatcherAssert.assertThat; public class P11Test { diff --git a/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P12Test.java b/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P12Test.java index 116bd2bc..0b562f70 100644 --- a/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P12Test.java +++ b/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P12Test.java @@ -7,7 +7,7 @@ import java.util.List; import static org.hamcrest.collection.IsCollectionWithSize.hasSize; -import static org.junit.Assert.assertThat; +import static org.hamcrest.MatcherAssert.assertThat; public class P12Test { diff --git a/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P13Test.java b/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P13Test.java index 4339cb23..7f469aa3 100644 --- a/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P13Test.java +++ b/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P13Test.java @@ -10,7 +10,7 @@ import static org.hamcrest.CoreMatchers.equalTo; import static org.hamcrest.CoreMatchers.is; import static org.hamcrest.collection.IsCollectionWithSize.hasSize; -import static org.junit.Assert.assertThat; +import static org.hamcrest.MatcherAssert.assertThat; public class P13Test { diff --git a/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P14Test.java b/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P14Test.java index 8d5c2c30..9bdb98a4 100644 --- a/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P14Test.java +++ b/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P14Test.java @@ -7,7 +7,7 @@ import static org.hamcrest.collection.IsCollectionWithSize.hasSize; import static org.hamcrest.collection.IsIterableContainingInOrder.contains; -import static org.junit.Assert.assertThat; +import static org.hamcrest.MatcherAssert.assertThat; public class P14Test { diff --git a/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P15Test.java b/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P15Test.java index 70c32e07..54b12bf6 100644 --- a/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P15Test.java +++ b/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P15Test.java @@ -7,7 +7,7 @@ import static org.hamcrest.collection.IsCollectionWithSize.hasSize; import static org.hamcrest.collection.IsIterableContainingInOrder.contains; -import static org.junit.Assert.assertThat; +import static org.hamcrest.MatcherAssert.assertThat; public class P15Test { diff --git a/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P16Test.java b/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P16Test.java index 8633cae7..f620c1d5 100644 --- a/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P16Test.java +++ b/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P16Test.java @@ -7,7 +7,7 @@ import static org.hamcrest.collection.IsCollectionWithSize.hasSize; import static org.hamcrest.collection.IsIterableContainingInOrder.contains; -import static org.junit.Assert.assertThat; +import static org.hamcrest.MatcherAssert.assertThat; public class P16Test { diff --git a/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P17Test.java b/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P17Test.java index 45922814..9f81029c 100644 --- a/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P17Test.java +++ b/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P17Test.java @@ -7,7 +7,7 @@ import java.util.Map; import static org.hamcrest.collection.IsIterableContainingInOrder.contains; -import static org.junit.Assert.assertThat; +import static org.hamcrest.MatcherAssert.assertThat; public class P17Test { diff --git a/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P18Test.java b/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P18Test.java index 2585600b..19c79c0f 100644 --- a/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P18Test.java +++ b/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P18Test.java @@ -7,7 +7,7 @@ import static org.hamcrest.collection.IsCollectionWithSize.hasSize; import static org.hamcrest.collection.IsIterableContainingInOrder.contains; -import static org.junit.Assert.assertThat; +import static org.hamcrest.MatcherAssert.assertThat; public class P18Test { diff --git a/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P19Test.java b/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P19Test.java index a8c360b0..a9f48b0f 100644 --- a/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P19Test.java +++ b/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P19Test.java @@ -6,7 +6,7 @@ import java.util.List; import static org.hamcrest.CoreMatchers.equalTo; -import static org.junit.Assert.assertThat; +import static org.hamcrest.MatcherAssert.assertThat; public class P19Test { diff --git a/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P20Test.java b/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P20Test.java index 4d2ee459..00b4e7eb 100644 --- a/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P20Test.java +++ b/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P20Test.java @@ -5,7 +5,7 @@ import java.util.Arrays; import static org.hamcrest.CoreMatchers.equalTo; -import static org.junit.Assert.assertThat; +import static org.hamcrest.MatcherAssert.assertThat; public class P20Test { diff --git a/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P21Test.java b/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P21Test.java index d762951d..313a518a 100644 --- a/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P21Test.java +++ b/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P21Test.java @@ -8,7 +8,7 @@ import static java.util.stream.Collectors.toList; import static org.hamcrest.collection.IsCollectionWithSize.hasSize; import static org.hamcrest.collection.IsIterableContainingInOrder.contains; -import static org.junit.Assert.assertThat; +import static org.hamcrest.MatcherAssert.assertThat; public class P21Test { diff --git a/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P22Test.java b/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P22Test.java index a096c0fb..61a217ee 100644 --- a/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P22Test.java +++ b/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P22Test.java @@ -6,7 +6,7 @@ import static org.hamcrest.collection.IsCollectionWithSize.hasSize; import static org.hamcrest.collection.IsIterableContainingInOrder.contains; -import static org.junit.Assert.assertThat; +import static org.hamcrest.MatcherAssert.assertThat; public class P22Test { diff --git a/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P23Test.java b/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P23Test.java index c1793d3a..e81046aa 100644 --- a/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P23Test.java +++ b/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P23Test.java @@ -6,7 +6,7 @@ import java.util.List; import static org.hamcrest.collection.IsCollectionWithSize.hasSize; -import static org.junit.Assert.assertThat; +import static org.hamcrest.MatcherAssert.assertThat; public class P23Test { diff --git a/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P24Test.java b/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P24Test.java index 56b7ecad..00d3721b 100644 --- a/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P24Test.java +++ b/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P24Test.java @@ -5,7 +5,7 @@ import java.util.List; import static org.hamcrest.collection.IsCollectionWithSize.hasSize; -import static org.junit.Assert.assertThat; +import static org.hamcrest.MatcherAssert.assertThat; public class P24Test { diff --git a/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P25Test.java b/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P25Test.java index 8eddf83a..239fcd77 100644 --- a/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P25Test.java +++ b/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P25Test.java @@ -8,7 +8,7 @@ import static java.util.stream.Collectors.toList; import static org.hamcrest.collection.IsCollectionWithSize.hasSize; import static org.hamcrest.collection.IsIterableContainingInAnyOrder.containsInAnyOrder; -import static org.junit.Assert.assertThat; +import static org.hamcrest.MatcherAssert.assertThat; public class P25Test { diff --git a/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P26Test.java b/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P26Test.java index 2d89988f..ab1bd182 100644 --- a/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P26Test.java +++ b/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P26Test.java @@ -7,7 +7,7 @@ import static java.util.stream.Collectors.toList; import static org.hamcrest.collection.IsCollectionWithSize.hasSize; -import static org.junit.Assert.assertThat; +import static org.hamcrest.MatcherAssert.assertThat; public class P26Test { diff --git a/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P27Test.java b/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P27Test.java index 7417e250..c3e2f77c 100644 --- a/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P27Test.java +++ b/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P27Test.java @@ -8,7 +8,7 @@ import static java.util.stream.Collectors.toList; import static org.hamcrest.collection.IsCollectionWithSize.hasSize; -import static org.junit.Assert.assertThat; +import static org.hamcrest.MatcherAssert.assertThat; public class P27Test { diff --git a/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P28Test.java b/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P28Test.java index a914d8c8..ba0853a0 100644 --- a/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P28Test.java +++ b/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P28Test.java @@ -7,7 +7,7 @@ import static org.hamcrest.CoreMatchers.equalTo; import static org.hamcrest.CoreMatchers.is; -import static org.junit.Assert.assertThat; +import static org.hamcrest.MatcherAssert.assertThat; public class P28Test { diff --git a/java8/src/test/java/com/shekhargulati/ninetynine_problems/_02_arithmetic/P32Test.java b/java8/src/test/java/com/shekhargulati/ninetynine_problems/_02_arithmetic/P32Test.java index 125b150b..a8674b3f 100644 --- a/java8/src/test/java/com/shekhargulati/ninetynine_problems/_02_arithmetic/P32Test.java +++ b/java8/src/test/java/com/shekhargulati/ninetynine_problems/_02_arithmetic/P32Test.java @@ -5,7 +5,7 @@ import java.util.List; import static org.hamcrest.core.IsCollectionContaining.hasItems; -import static org.junit.Assert.assertThat; +import static org.hamcrest.MatcherAssert.assertThat; public class P32Test { diff --git a/java8/src/test/java/com/shekhargulati/ninetynine_problems/_02_arithmetic/P33Test.java b/java8/src/test/java/com/shekhargulati/ninetynine_problems/_02_arithmetic/P33Test.java index 46d9e2ff..de4185e1 100644 --- a/java8/src/test/java/com/shekhargulati/ninetynine_problems/_02_arithmetic/P33Test.java +++ b/java8/src/test/java/com/shekhargulati/ninetynine_problems/_02_arithmetic/P33Test.java @@ -6,7 +6,7 @@ import java.util.List; import static org.hamcrest.core.IsCollectionContaining.hasItems; -import static org.junit.Assert.assertThat; +import static org.hamcrest.MatcherAssert.assertThat; public class P33Test { diff --git a/java8/src/test/java/com/shekhargulati/ninetynine_problems/_02_arithmetic/P34Test.java b/java8/src/test/java/com/shekhargulati/ninetynine_problems/_02_arithmetic/P34Test.java index 38a2aed8..63f9bfc8 100644 --- a/java8/src/test/java/com/shekhargulati/ninetynine_problems/_02_arithmetic/P34Test.java +++ b/java8/src/test/java/com/shekhargulati/ninetynine_problems/_02_arithmetic/P34Test.java @@ -7,7 +7,7 @@ import static org.hamcrest.collection.IsCollectionWithSize.hasSize; import static org.hamcrest.core.IsCollectionContaining.hasItems; -import static org.junit.Assert.assertThat; +import static org.hamcrest.MatcherAssert.assertThat; public class P34Test { diff --git a/java8/src/test/java/com/shekhargulati/ninetynine_problems/_02_arithmetic/P35Test.java b/java8/src/test/java/com/shekhargulati/ninetynine_problems/_02_arithmetic/P35Test.java index 039edb47..a28197aa 100644 --- a/java8/src/test/java/com/shekhargulati/ninetynine_problems/_02_arithmetic/P35Test.java +++ b/java8/src/test/java/com/shekhargulati/ninetynine_problems/_02_arithmetic/P35Test.java @@ -6,7 +6,7 @@ import static org.hamcrest.collection.IsCollectionWithSize.hasSize; import static org.hamcrest.core.IsCollectionContaining.hasItems; -import static org.junit.Assert.assertThat; +import static org.hamcrest.MatcherAssert.assertThat; public class P35Test { diff --git a/java8/src/test/java/com/shekhargulati/ninetynine_problems/_02_arithmetic/P36Test.java b/java8/src/test/java/com/shekhargulati/ninetynine_problems/_02_arithmetic/P36Test.java index 75249167..5f0939c3 100644 --- a/java8/src/test/java/com/shekhargulati/ninetynine_problems/_02_arithmetic/P36Test.java +++ b/java8/src/test/java/com/shekhargulati/ninetynine_problems/_02_arithmetic/P36Test.java @@ -9,7 +9,7 @@ import static org.hamcrest.collection.IsCollectionWithSize.hasSize; import static org.hamcrest.core.IsCollectionContaining.hasItems; -import static org.junit.Assert.assertThat; +import static org.hamcrest.MatcherAssert.assertThat; public class P36Test { diff --git a/java8/src/test/java/com/shekhargulati/ninetynine_problems/_02_arithmetic/P37Test.java b/java8/src/test/java/com/shekhargulati/ninetynine_problems/_02_arithmetic/P37Test.java index 3c457e26..ed291fdd 100644 --- a/java8/src/test/java/com/shekhargulati/ninetynine_problems/_02_arithmetic/P37Test.java +++ b/java8/src/test/java/com/shekhargulati/ninetynine_problems/_02_arithmetic/P37Test.java @@ -3,7 +3,7 @@ import org.junit.Test; import static org.hamcrest.CoreMatchers.equalTo; -import static org.junit.Assert.assertThat; +import static org.hamcrest.MatcherAssert.assertThat; public class P37Test { diff --git a/java8/src/test/java/com/shekhargulati/ninetynine_problems/_02_arithmetic/P39Test.java b/java8/src/test/java/com/shekhargulati/ninetynine_problems/_02_arithmetic/P39Test.java index d36bec4b..ac173ec4 100644 --- a/java8/src/test/java/com/shekhargulati/ninetynine_problems/_02_arithmetic/P39Test.java +++ b/java8/src/test/java/com/shekhargulati/ninetynine_problems/_02_arithmetic/P39Test.java @@ -3,7 +3,7 @@ import org.junit.Test; import static org.hamcrest.CoreMatchers.equalTo; -import static org.junit.Assert.assertThat; +import static org.hamcrest.MatcherAssert.assertThat; public class P39Test { diff --git a/java8/src/test/java/com/shekhargulati/ninetynine_problems/_02_arithmetic/P40Test.java b/java8/src/test/java/com/shekhargulati/ninetynine_problems/_02_arithmetic/P40Test.java index 6ca70037..7ee4ff6e 100644 --- a/java8/src/test/java/com/shekhargulati/ninetynine_problems/_02_arithmetic/P40Test.java +++ b/java8/src/test/java/com/shekhargulati/ninetynine_problems/_02_arithmetic/P40Test.java @@ -3,7 +3,7 @@ import org.junit.Test; import static org.hamcrest.CoreMatchers.equalTo; -import static org.junit.Assert.assertThat; +import static org.hamcrest.MatcherAssert.assertThat; public class P40Test { diff --git a/java8/src/test/java/com/shekhargulati/ninetynine_problems/_02_arithmetic/P41Test.java b/java8/src/test/java/com/shekhargulati/ninetynine_problems/_02_arithmetic/P41Test.java index 3a962584..062603fc 100644 --- a/java8/src/test/java/com/shekhargulati/ninetynine_problems/_02_arithmetic/P41Test.java +++ b/java8/src/test/java/com/shekhargulati/ninetynine_problems/_02_arithmetic/P41Test.java @@ -3,7 +3,7 @@ import org.junit.Test; import static org.hamcrest.CoreMatchers.equalTo; -import static org.junit.Assert.assertThat; +import static org.hamcrest.MatcherAssert.assertThat; public class P41Test { diff --git a/java8/src/test/java/com/shekhargulati/ninetynine_problems/_03_logic_and_codes/P46Test.java b/java8/src/test/java/com/shekhargulati/ninetynine_problems/_03_logic_and_codes/P46Test.java index a71a73b1..1044a1d2 100644 --- a/java8/src/test/java/com/shekhargulati/ninetynine_problems/_03_logic_and_codes/P46Test.java +++ b/java8/src/test/java/com/shekhargulati/ninetynine_problems/_03_logic_and_codes/P46Test.java @@ -6,7 +6,7 @@ import static com.shekhargulati.ninetynine_problems._03_logic_and_codes.P46.or; import static org.hamcrest.CoreMatchers.equalTo; import static org.hamcrest.CoreMatchers.is; -import static org.junit.Assert.assertThat; +import static org.hamcrest.MatcherAssert.assertThat; public class P46Test { diff --git a/java8/src/test/java/com/shekhargulati/ninetynine_problems/_03_logic_and_codes/P49Test.java b/java8/src/test/java/com/shekhargulati/ninetynine_problems/_03_logic_and_codes/P49Test.java index e795159d..ac20b749 100644 --- a/java8/src/test/java/com/shekhargulati/ninetynine_problems/_03_logic_and_codes/P49Test.java +++ b/java8/src/test/java/com/shekhargulati/ninetynine_problems/_03_logic_and_codes/P49Test.java @@ -5,7 +5,7 @@ import java.util.List; import static org.hamcrest.collection.IsIterableContainingInOrder.contains; -import static org.junit.Assert.assertThat; +import static org.hamcrest.MatcherAssert.assertThat; public class P49Test { diff --git a/java8/src/test/java/com/shekhargulati/random/RandomProblem003Test.java b/java8/src/test/java/com/shekhargulati/random/RandomProblem003Test.java index ec17733f..c0c01bfa 100644 --- a/java8/src/test/java/com/shekhargulati/random/RandomProblem003Test.java +++ b/java8/src/test/java/com/shekhargulati/random/RandomProblem003Test.java @@ -3,7 +3,7 @@ import org.junit.Test; import static org.hamcrest.CoreMatchers.equalTo; -import static org.junit.Assert.assertThat; +import static org.hamcrest.MatcherAssert.assertThat; public class RandomProblem003Test { diff --git a/java8/src/test/java/com/shekhargulati/random/RandomProblem004Test.java b/java8/src/test/java/com/shekhargulati/random/RandomProblem004Test.java index 8cb33882..4a16f5cd 100644 --- a/java8/src/test/java/com/shekhargulati/random/RandomProblem004Test.java +++ b/java8/src/test/java/com/shekhargulati/random/RandomProblem004Test.java @@ -3,7 +3,7 @@ import org.junit.Test; import static org.hamcrest.CoreMatchers.equalTo; -import static org.junit.Assert.assertThat; +import static org.hamcrest.MatcherAssert.assertThat; public class RandomProblem004Test { diff --git a/java8/src/test/java/com/shekhargulati/tadm/ch03/Problem3_2Test.java b/java8/src/test/java/com/shekhargulati/tadm/ch03/Problem3_2Test.java index 8a792533..201432a9 100644 --- a/java8/src/test/java/com/shekhargulati/tadm/ch03/Problem3_2Test.java +++ b/java8/src/test/java/com/shekhargulati/tadm/ch03/Problem3_2Test.java @@ -9,7 +9,7 @@ import static java.util.stream.Collectors.toCollection; import static org.hamcrest.CoreMatchers.equalTo; -import static org.junit.Assert.assertThat; +import static org.hamcrest.MatcherAssert.assertThat; public class Problem3_2Test { diff --git a/java8/src/test/java/com/shekhargulati/tadm/ch04/examples/SelectionSortTest.java b/java8/src/test/java/com/shekhargulati/tadm/ch04/examples/SelectionSortTest.java index c85905fb..21154171 100644 --- a/java8/src/test/java/com/shekhargulati/tadm/ch04/examples/SelectionSortTest.java +++ b/java8/src/test/java/com/shekhargulati/tadm/ch04/examples/SelectionSortTest.java @@ -3,7 +3,7 @@ import org.hamcrest.CoreMatchers; import org.junit.Test; -import static org.junit.Assert.assertThat; +import static org.hamcrest.MatcherAssert.assertThat; public class SelectionSortTest { diff --git a/java8/src/test/java/com/shekhargulati/tadm/ch04/excercises/Problem4_1Test.java b/java8/src/test/java/com/shekhargulati/tadm/ch04/excercises/Problem4_1Test.java index 4f4e0795..2046c06a 100644 --- a/java8/src/test/java/com/shekhargulati/tadm/ch04/excercises/Problem4_1Test.java +++ b/java8/src/test/java/com/shekhargulati/tadm/ch04/excercises/Problem4_1Test.java @@ -6,7 +6,7 @@ import java.util.Arrays; import java.util.List; -import static org.junit.Assert.assertThat; +import static org.hamcrest.MatcherAssert.assertThat; public class Problem4_1Test { diff --git a/java8/src/test/java/com/shekhargulati/tadm/ch04/excercises/Problem4_2Test.java b/java8/src/test/java/com/shekhargulati/tadm/ch04/excercises/Problem4_2Test.java index bbfce64f..ec146c1f 100644 --- a/java8/src/test/java/com/shekhargulati/tadm/ch04/excercises/Problem4_2Test.java +++ b/java8/src/test/java/com/shekhargulati/tadm/ch04/excercises/Problem4_2Test.java @@ -4,7 +4,7 @@ import org.junit.Test; import static org.hamcrest.CoreMatchers.equalTo; -import static org.junit.Assert.assertThat; +import static org.hamcrest.MatcherAssert.assertThat; public class Problem4_2Test { diff --git a/java8/src/test/java/com/shekhargulati/tadm/ch04/excercises/Problem4_5Test.java b/java8/src/test/java/com/shekhargulati/tadm/ch04/excercises/Problem4_5Test.java index 7df2ce53..e7e036e0 100644 --- a/java8/src/test/java/com/shekhargulati/tadm/ch04/excercises/Problem4_5Test.java +++ b/java8/src/test/java/com/shekhargulati/tadm/ch04/excercises/Problem4_5Test.java @@ -3,7 +3,7 @@ import org.hamcrest.CoreMatchers; import org.junit.Test; -import static org.junit.Assert.assertThat; +import static org.hamcrest.MatcherAssert.assertThat; public class Problem4_5Test { diff --git a/java8/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst b/java8/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst new file mode 100644 index 00000000..97c05d86 --- /dev/null +++ b/java8/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst @@ -0,0 +1,76 @@ +com/shekhargulati/ninetynine_problems/_03_logic_and_codes/P46.class +com/shekhargulati/leetcode/algorithms/Problem01.class +com/shekhargulati/tadm/ch04/examples/SelectionSort.class +com/shekhargulati/random/tree/Tree.class +com/shekhargulati/ninetynine_problems/_01_lists/P19.class +com/shekhargulati/ninetynine_problems/_01_lists/P09.class +com/shekhargulati/ninetynine_problems/_02_arithmetic/P39.class +com/shekhargulati/random/tree/TreeOperations.class +com/shekhargulati/leetcode/algorithms/Problem02$ListNode.class +com/shekhargulati/tadm/ch03/Problem3_4.class +com/shekhargulati/ninetynine_problems/_01_lists/P22.class +com/shekhargulati/tadm/ch03/Problem3_1.class +com/shekhargulati/tadm/ch03/Node.class +com/shekhargulati/tadm/ch03/Tree.class +com/shekhargulati/ninetynine_problems/_01_lists/P12.class +com/shekhargulati/ninetynine_problems/_02_arithmetic/P31.class +com/shekhargulati/ninetynine_problems/_01_lists/CollectionUtils.class +com/shekhargulati/ninetynine_problems/_01_lists/P02.class +com/shekhargulati/ninetynine_problems/_02_arithmetic/P41.class +com/shekhargulati/tadm/ch04/examples/MergeSort.class +com/shekhargulati/tadm/ch03/Bin.class +com/shekhargulati/ninetynine_problems/_02_arithmetic/P36.class +com/shekhargulati/ninetynine_problems/_01_lists/P05.class +com/shekhargulati/ninetynine_problems/_01_lists/P25.class +com/shekhargulati/ninetynine_problems/_01_lists/P13.class +com/shekhargulati/leetcode/algorithms/Problem02.class +com/shekhargulati/ninetynine_problems/_01_lists/P28.class +com/shekhargulati/ninetynine_problems/_01_lists/P10.class +com/shekhargulati/ninetynine_problems/_03_logic_and_codes/P47.class +com/shekhargulati/tadm/ch03/Problem3_3.class +com/shekhargulati/random/RandomProblem002.class +com/shekhargulati/codegolf/AcronymMaker.class +com/shekhargulati/ninetynine_problems/_01_lists/P21.class +com/shekhargulati/ninetynine_problems/_01_lists/P08.class +com/shekhargulati/ninetynine_problems/_01_lists/P01.class +com/shekhargulati/ninetynine_problems/_01_lists/P16.class +com/shekhargulati/leetcode/algorithms/Problem05.class +com/shekhargulati/tadm/ch04/excercises/Problem4_6.class +com/shekhargulati/tadm/ch03/Problem3_2.class +com/shekhargulati/IntPair.class +com/shekhargulati/random/algebra/RandomProblem005.class +com/shekhargulati/ninetynine_problems/_02_arithmetic/P37.class +com/shekhargulati/ninetynine_problems/_02_arithmetic/P40.class +com/shekhargulati/random/RandomProblem003.class +com/shekhargulati/ninetynine_problems/_03_logic_and_codes/P48.class +com/shekhargulati/ninetynine_problems/_01_lists/P04.class +com/shekhargulati/ninetynine_problems/_01_lists/P24.class +com/shekhargulati/ninetynine_problems/_01_lists/P14.class +com/shekhargulati/ninetynine_problems/_01_lists/P27.class +com/shekhargulati/ninetynine_problems/_01_lists/P17.class +com/shekhargulati/ninetynine_problems/_02_arithmetic/P33.class +com/shekhargulati/ninetynine_problems/_01_lists/P07.class +com/shekhargulati/ninetynine_problems/_02_arithmetic/P34.class +com/shekhargulati/tadm/ch04/excercises/Problem4_5.class +com/shekhargulati/tadm/ch03/DynamicArray.class +com/shekhargulati/tadm/ch04/excercises/Problem4_2.class +com/shekhargulati/tadm/ch04/excercises/Problem4_1.class +com/shekhargulati/fortytwo_problems/Problem01.class +com/shekhargulati/ninetynine_problems/_01_lists/P23.class +com/shekhargulati/ninetynine_problems/_01_lists/P15.class +com/shekhargulati/tadm/ch03/Problem3_8.class +com/shekhargulati/ninetynine_problems/_02_arithmetic/P38.class +com/shekhargulati/ninetynine_problems/_01_lists/P18.class +com/shekhargulati/ninetynine_problems/_01_lists/P20.class +com/shekhargulati/ninetynine_problems/_01_lists/P11.class +com/shekhargulati/ninetynine_problems/_03_logic_and_codes/P49.class +com/shekhargulati/random/RandomProblem004.class +com/shekhargulati/leetcode/algorithms/Problem03.class +com/shekhargulati/ninetynine_problems/_02_arithmetic/P32.class +com/shekhargulati/ninetynine_problems/_01_lists/P03.class +com/shekhargulati/ninetynine_problems/_01_lists/P06.class +com/shekhargulati/ninetynine_problems/_02_arithmetic/P35.class +com/shekhargulati/tadm/ch04/excercises/Player.class +com/shekhargulati/tadm/ch03/Dictionary.class +com/shekhargulati/tadm/ch03/Problem3_10.class +com/shekhargulati/ninetynine_problems/_01_lists/P26.class diff --git a/java8/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst b/java8/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst new file mode 100644 index 00000000..3cd5c8b0 --- /dev/null +++ b/java8/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst @@ -0,0 +1,68 @@ +/Users/hansolo/Azul_Projects/99-problems/java8/src/main/java/com/shekhargulati/ninetynine_problems/_01_lists/P28.java +/Users/hansolo/Azul_Projects/99-problems/java8/src/main/java/com/shekhargulati/tadm/ch04/excercises/Problem4_1.java +/Users/hansolo/Azul_Projects/99-problems/java8/src/main/java/com/shekhargulati/ninetynine_problems/_02_arithmetic/P32.java +/Users/hansolo/Azul_Projects/99-problems/java8/src/main/java/com/shekhargulati/ninetynine_problems/_02_arithmetic/P40.java +/Users/hansolo/Azul_Projects/99-problems/java8/src/main/java/com/shekhargulati/ninetynine_problems/_01_lists/P14.java +/Users/hansolo/Azul_Projects/99-problems/java8/src/main/java/com/shekhargulati/ninetynine_problems/_01_lists/P22.java +/Users/hansolo/Azul_Projects/99-problems/java8/src/main/java/com/shekhargulati/leetcode/algorithms/Problem02.java +/Users/hansolo/Azul_Projects/99-problems/java8/src/main/java/com/shekhargulati/ninetynine_problems/_03_logic_and_codes/P49.java +/Users/hansolo/Azul_Projects/99-problems/java8/src/main/java/com/shekhargulati/tadm/ch04/examples/MergeSort.java +/Users/hansolo/Azul_Projects/99-problems/java8/src/main/java/com/shekhargulati/ninetynine_problems/_02_arithmetic/P38.java +/Users/hansolo/Azul_Projects/99-problems/java8/src/main/java/com/shekhargulati/ninetynine_problems/_01_lists/P23.java +/Users/hansolo/Azul_Projects/99-problems/java8/src/main/java/com/shekhargulati/ninetynine_problems/_01_lists/P19.java +/Users/hansolo/Azul_Projects/99-problems/java8/src/main/java/com/shekhargulati/tadm/ch04/excercises/Problem4_2.java +/Users/hansolo/Azul_Projects/99-problems/java8/src/main/java/com/shekhargulati/ninetynine_problems/_02_arithmetic/P37.java +/Users/hansolo/Azul_Projects/99-problems/java8/src/main/java/com/shekhargulati/ninetynine_problems/_01_lists/P01.java +/Users/hansolo/Azul_Projects/99-problems/java8/src/main/java/com/shekhargulati/ninetynine_problems/_02_arithmetic/P31.java +/Users/hansolo/Azul_Projects/99-problems/java8/src/main/java/com/shekhargulati/ninetynine_problems/_01_lists/CollectionUtils.java +/Users/hansolo/Azul_Projects/99-problems/java8/src/main/java/com/shekhargulati/ninetynine_problems/_01_lists/P15.java +/Users/hansolo/Azul_Projects/99-problems/java8/src/main/java/com/shekhargulati/ninetynine_problems/_03_logic_and_codes/P48.java +/Users/hansolo/Azul_Projects/99-problems/java8/src/main/java/com/shekhargulati/ninetynine_problems/_02_arithmetic/P33.java +/Users/hansolo/Azul_Projects/99-problems/java8/src/main/java/com/shekhargulati/ninetynine_problems/_03_logic_and_codes/P47.java +/Users/hansolo/Azul_Projects/99-problems/java8/src/main/java/com/shekhargulati/ninetynine_problems/_02_arithmetic/P41.java +/Users/hansolo/Azul_Projects/99-problems/java8/src/main/java/com/shekhargulati/ninetynine_problems/_02_arithmetic/P36.java +/Users/hansolo/Azul_Projects/99-problems/java8/src/main/java/com/shekhargulati/tadm/ch04/excercises/Problem4_6.java +/Users/hansolo/Azul_Projects/99-problems/java8/src/main/java/com/shekhargulati/ninetynine_problems/_01_lists/P09.java +/Users/hansolo/Azul_Projects/99-problems/java8/src/main/java/com/shekhargulati/ninetynine_problems/_01_lists/P06.java +/Users/hansolo/Azul_Projects/99-problems/java8/src/main/java/com/shekhargulati/ninetynine_problems/_02_arithmetic/P39.java +/Users/hansolo/Azul_Projects/99-problems/java8/src/main/java/com/shekhargulati/leetcode/algorithms/Problem01.java +/Users/hansolo/Azul_Projects/99-problems/java8/src/main/java/com/shekhargulati/ninetynine_problems/_01_lists/P25.java +/Users/hansolo/Azul_Projects/99-problems/java8/src/main/java/com/shekhargulati/ninetynine_problems/_01_lists/P17.java +/Users/hansolo/Azul_Projects/99-problems/java8/src/main/java/com/shekhargulati/ninetynine_problems/_02_arithmetic/P35.java +/Users/hansolo/Azul_Projects/99-problems/java8/src/main/java/com/shekhargulati/IntPair.java +/Users/hansolo/Azul_Projects/99-problems/java8/src/main/java/com/shekhargulati/ninetynine_problems/_01_lists/P11.java +/Users/hansolo/Azul_Projects/99-problems/java8/src/main/java/com/shekhargulati/ninetynine_problems/_03_logic_and_codes/P46.java +/Users/hansolo/Azul_Projects/99-problems/java8/src/main/java/com/shekhargulati/tadm/ch03/Problem3_8.java +/Users/hansolo/Azul_Projects/99-problems/java8/src/main/java/com/shekhargulati/ninetynine_problems/_01_lists/P03.java +/Users/hansolo/Azul_Projects/99-problems/java8/src/main/java/com/shekhargulati/tadm/ch04/examples/SelectionSort.java +/Users/hansolo/Azul_Projects/99-problems/java8/src/main/java/com/shekhargulati/leetcode/algorithms/Problem05.java +/Users/hansolo/Azul_Projects/99-problems/java8/src/main/java/com/shekhargulati/tadm/ch03/Problem3_3.java +/Users/hansolo/Azul_Projects/99-problems/java8/src/main/java/com/shekhargulati/random/RandomProblem003.java +/Users/hansolo/Azul_Projects/99-problems/java8/src/main/java/com/shekhargulati/ninetynine_problems/_01_lists/P08.java +/Users/hansolo/Azul_Projects/99-problems/java8/src/main/java/com/shekhargulati/ninetynine_problems/_01_lists/P26.java +/Users/hansolo/Azul_Projects/99-problems/java8/src/main/java/com/shekhargulati/ninetynine_problems/_01_lists/P20.java +/Users/hansolo/Azul_Projects/99-problems/java8/src/main/java/com/shekhargulati/random/RandomProblem002.java +/Users/hansolo/Azul_Projects/99-problems/java8/src/main/java/com/shekhargulati/tadm/ch04/excercises/Problem4_5.java +/Users/hansolo/Azul_Projects/99-problems/java8/src/main/java/com/shekhargulati/random/tree/Tree.java +/Users/hansolo/Azul_Projects/99-problems/java8/src/main/java/com/shekhargulati/ninetynine_problems/_02_arithmetic/P34.java +/Users/hansolo/Azul_Projects/99-problems/java8/src/main/java/com/shekhargulati/ninetynine_problems/_01_lists/P12.java +/Users/hansolo/Azul_Projects/99-problems/java8/src/main/java/com/shekhargulati/tadm/ch03/Problem3_2.java +/Users/hansolo/Azul_Projects/99-problems/java8/src/main/java/com/shekhargulati/ninetynine_problems/_01_lists/P04.java +/Users/hansolo/Azul_Projects/99-problems/java8/src/main/java/com/shekhargulati/tadm/ch03/Problem3_4.java +/Users/hansolo/Azul_Projects/99-problems/java8/src/main/java/com/shekhargulati/tadm/ch03/Problem3_10.java +/Users/hansolo/Azul_Projects/99-problems/java8/src/main/java/com/shekhargulati/ninetynine_problems/_01_lists/P07.java +/Users/hansolo/Azul_Projects/99-problems/java8/src/main/java/com/shekhargulati/leetcode/algorithms/Problem03.java +/Users/hansolo/Azul_Projects/99-problems/java8/src/main/java/com/shekhargulati/tadm/ch03/Problem3_1.java +/Users/hansolo/Azul_Projects/99-problems/java8/src/main/java/com/shekhargulati/random/algebra/RandomProblem005.java +/Users/hansolo/Azul_Projects/99-problems/java8/src/main/java/com/shekhargulati/ninetynine_problems/_01_lists/P18.java +/Users/hansolo/Azul_Projects/99-problems/java8/src/main/java/com/shekhargulati/ninetynine_problems/_01_lists/P24.java +/Users/hansolo/Azul_Projects/99-problems/java8/src/main/java/com/shekhargulati/ninetynine_problems/_01_lists/P27.java +/Users/hansolo/Azul_Projects/99-problems/java8/src/main/java/com/shekhargulati/ninetynine_problems/_01_lists/P16.java +/Users/hansolo/Azul_Projects/99-problems/java8/src/main/java/com/shekhargulati/ninetynine_problems/_01_lists/P21.java +/Users/hansolo/Azul_Projects/99-problems/java8/src/main/java/com/shekhargulati/ninetynine_problems/_01_lists/P13.java +/Users/hansolo/Azul_Projects/99-problems/java8/src/main/java/com/shekhargulati/ninetynine_problems/_01_lists/P05.java +/Users/hansolo/Azul_Projects/99-problems/java8/src/main/java/com/shekhargulati/fortytwo_problems/Problem01.java +/Users/hansolo/Azul_Projects/99-problems/java8/src/main/java/com/shekhargulati/ninetynine_problems/_01_lists/P02.java +/Users/hansolo/Azul_Projects/99-problems/java8/src/main/java/com/shekhargulati/ninetynine_problems/_01_lists/P10.java +/Users/hansolo/Azul_Projects/99-problems/java8/src/main/java/com/shekhargulati/codegolf/AcronymMaker.java +/Users/hansolo/Azul_Projects/99-problems/java8/src/main/java/com/shekhargulati/random/RandomProblem004.java diff --git a/java8/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst b/java8/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst new file mode 100644 index 00000000..867f08c8 --- /dev/null +++ b/java8/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst @@ -0,0 +1,57 @@ +com/shekhargulati/ninetynine_problems/_01_lists/P07Test.class +com/shekhargulati/ninetynine_problems/_01_lists/P11Test.class +com/shekhargulati/ninetynine_problems/_02_arithmetic/P31Test.class +com/shekhargulati/ninetynine_problems/_01_lists/P26Test.class +com/shekhargulati/ninetynine_problems/_01_lists/P18Test.class +com/shekhargulati/tadm/ch04/excercises/Problem4_1Test.class +com/shekhargulati/leetcode/algorithms/Problem05Test.class +com/shekhargulati/ninetynine_problems/_02_arithmetic/P35Test.class +com/shekhargulati/ninetynine_problems/_01_lists/P15Test.class +com/shekhargulati/leetcode/Problem03Test.class +com/shekhargulati/tadm/ch04/examples/SelectionSortTest.class +com/shekhargulati/random/algebra/RandomProblem005Test.class +com/shekhargulati/ninetynine_problems/_02_arithmetic/P38Test.class +com/shekhargulati/tadm/ch04/excercises/Problem4_5Test.class +com/shekhargulati/ninetynine_problems/_01_lists/P12Test.class +com/shekhargulati/ninetynine_problems/_01_lists/P25Test.class +com/shekhargulati/ninetynine_problems/_01_lists/P19Test.class +com/shekhargulati/ninetynine_problems/_01_lists/P06Test.class +com/shekhargulati/random/RandomProblem004Test.class +com/shekhargulati/ninetynine_problems/_02_arithmetic/P34Test.class +com/shekhargulati/ninetynine_problems/_01_lists/P16Test.class +com/shekhargulati/ninetynine_problems/_02_arithmetic/P40Test.class +com/shekhargulati/ninetynine_problems/_01_lists/P03Test.class +com/shekhargulati/ninetynine_problems/_01_lists/P22Test.class +com/shekhargulati/ninetynine_problems/_02_arithmetic/P37Test.class +com/shekhargulati/tadm/ch03/Problem3_1Test.class +com/shekhargulati/random/RandomProblem003Test.class +com/shekhargulati/ninetynine_problems/_03_logic_and_codes/P46Test.class +com/shekhargulati/ninetynine_problems/_02_arithmetic/P33Test.class +com/shekhargulati/tadm/ch04/excercises/Problem4_6Test.class +com/shekhargulati/codegolf/AcronymMakerTest.class +com/shekhargulati/ninetynine_problems/_01_lists/P13Test.class +com/shekhargulati/ninetynine_problems/_01_lists/P09Test.class +com/shekhargulati/ninetynine_problems/_01_lists/P05Test.class +com/shekhargulati/ninetynine_problems/_01_lists/P24Test.class +com/shekhargulati/fortytwo_problems/Problem01Test.class +com/shekhargulati/ninetynine_problems/_01_lists/P21Test.class +com/shekhargulati/ninetynine_problems/_01_lists/P02Test.class +com/shekhargulati/ninetynine_problems/_03_logic_and_codes/P49Test.class +com/shekhargulati/ninetynine_problems/_02_arithmetic/P41Test.class +com/shekhargulati/ninetynine_problems/_02_arithmetic/P36Test.class +com/shekhargulati/ninetynine_problems/_01_lists/P28Test.class +com/shekhargulati/leetcode/Problem01Test.class +com/shekhargulati/ninetynine_problems/_02_arithmetic/P32Test.class +com/shekhargulati/random/RandomProblem002Test.class +com/shekhargulati/tadm/ch03/Problem3_2Test.class +com/shekhargulati/ninetynine_problems/_01_lists/P10Test.class +com/shekhargulati/ninetynine_problems/_02_arithmetic/P39Test.class +com/shekhargulati/ninetynine_problems/_01_lists/P23Test.class +com/shekhargulati/ninetynine_problems/_01_lists/P04Test.class +com/shekhargulati/tadm/ch04/excercises/Problem4_2Test.class +com/shekhargulati/ninetynine_problems/_01_lists/P17Test.class +com/shekhargulati/ninetynine_problems/_01_lists/P20Test.class +com/shekhargulati/ninetynine_problems/_01_lists/P14Test.class +com/shekhargulati/ninetynine_problems/_01_lists/P01Test.class +com/shekhargulati/ninetynine_problems/_01_lists/P08Test.class +com/shekhargulati/ninetynine_problems/_01_lists/P27Test.class diff --git a/java8/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst b/java8/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst new file mode 100644 index 00000000..21a5d9fe --- /dev/null +++ b/java8/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst @@ -0,0 +1,57 @@ +/Users/hansolo/Azul_Projects/99-problems/java8/src/test/java/com/shekhargulati/ninetynine_problems/_02_arithmetic/P40Test.java +/Users/hansolo/Azul_Projects/99-problems/java8/src/test/java/com/shekhargulati/random/algebra/RandomProblem005Test.java +/Users/hansolo/Azul_Projects/99-problems/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P01Test.java +/Users/hansolo/Azul_Projects/99-problems/java8/src/test/java/com/shekhargulati/ninetynine_problems/_02_arithmetic/P31Test.java +/Users/hansolo/Azul_Projects/99-problems/java8/src/test/java/com/shekhargulati/leetcode/algorithms/Problem05Test.java +/Users/hansolo/Azul_Projects/99-problems/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P26Test.java +/Users/hansolo/Azul_Projects/99-problems/java8/src/test/java/com/shekhargulati/tadm/ch04/excercises/Problem4_2Test.java +/Users/hansolo/Azul_Projects/99-problems/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P23Test.java +/Users/hansolo/Azul_Projects/99-problems/java8/src/test/java/com/shekhargulati/ninetynine_problems/_02_arithmetic/P34Test.java +/Users/hansolo/Azul_Projects/99-problems/java8/src/test/java/com/shekhargulati/ninetynine_problems/_02_arithmetic/P37Test.java +/Users/hansolo/Azul_Projects/99-problems/java8/src/test/java/com/shekhargulati/random/RandomProblem003Test.java +/Users/hansolo/Azul_Projects/99-problems/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P08Test.java +/Users/hansolo/Azul_Projects/99-problems/java8/src/test/java/com/shekhargulati/tadm/ch04/excercises/Problem4_6Test.java +/Users/hansolo/Azul_Projects/99-problems/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P02Test.java +/Users/hansolo/Azul_Projects/99-problems/java8/src/test/java/com/shekhargulati/tadm/ch04/examples/SelectionSortTest.java +/Users/hansolo/Azul_Projects/99-problems/java8/src/test/java/com/shekhargulati/codegolf/AcronymMakerTest.java +/Users/hansolo/Azul_Projects/99-problems/java8/src/test/java/com/shekhargulati/tadm/ch03/Problem3_2Test.java +/Users/hansolo/Azul_Projects/99-problems/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P14Test.java +/Users/hansolo/Azul_Projects/99-problems/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P20Test.java +/Users/hansolo/Azul_Projects/99-problems/java8/src/test/java/com/shekhargulati/ninetynine_problems/_02_arithmetic/P39Test.java +/Users/hansolo/Azul_Projects/99-problems/java8/src/test/java/com/shekhargulati/leetcode/Problem01Test.java +/Users/hansolo/Azul_Projects/99-problems/java8/src/test/java/com/shekhargulati/ninetynine_problems/_03_logic_and_codes/P46Test.java +/Users/hansolo/Azul_Projects/99-problems/java8/src/test/java/com/shekhargulati/tadm/ch03/Problem3_1Test.java +/Users/hansolo/Azul_Projects/99-problems/java8/src/test/java/com/shekhargulati/tadm/ch04/excercises/Problem4_5Test.java +/Users/hansolo/Azul_Projects/99-problems/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P13Test.java +/Users/hansolo/Azul_Projects/99-problems/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P19Test.java +/Users/hansolo/Azul_Projects/99-problems/java8/src/test/java/com/shekhargulati/ninetynine_problems/_02_arithmetic/P38Test.java +/Users/hansolo/Azul_Projects/99-problems/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P25Test.java +/Users/hansolo/Azul_Projects/99-problems/java8/src/test/java/com/shekhargulati/fortytwo_problems/Problem01Test.java +/Users/hansolo/Azul_Projects/99-problems/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P07Test.java +/Users/hansolo/Azul_Projects/99-problems/java8/src/test/java/com/shekhargulati/ninetynine_problems/_02_arithmetic/P33Test.java +/Users/hansolo/Azul_Projects/99-problems/java8/src/test/java/com/shekhargulati/random/RandomProblem002Test.java +/Users/hansolo/Azul_Projects/99-problems/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P24Test.java +/Users/hansolo/Azul_Projects/99-problems/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P27Test.java +/Users/hansolo/Azul_Projects/99-problems/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P21Test.java +/Users/hansolo/Azul_Projects/99-problems/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P15Test.java +/Users/hansolo/Azul_Projects/99-problems/java8/src/test/java/com/shekhargulati/tadm/ch04/excercises/Problem4_1Test.java +/Users/hansolo/Azul_Projects/99-problems/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P18Test.java +/Users/hansolo/Azul_Projects/99-problems/java8/src/test/java/com/shekhargulati/ninetynine_problems/_02_arithmetic/P35Test.java +/Users/hansolo/Azul_Projects/99-problems/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P09Test.java +/Users/hansolo/Azul_Projects/99-problems/java8/src/test/java/com/shekhargulati/ninetynine_problems/_03_logic_and_codes/P49Test.java +/Users/hansolo/Azul_Projects/99-problems/java8/src/test/java/com/shekhargulati/ninetynine_problems/_02_arithmetic/P32Test.java +/Users/hansolo/Azul_Projects/99-problems/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P06Test.java +/Users/hansolo/Azul_Projects/99-problems/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P12Test.java +/Users/hansolo/Azul_Projects/99-problems/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P03Test.java +/Users/hansolo/Azul_Projects/99-problems/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P17Test.java +/Users/hansolo/Azul_Projects/99-problems/java8/src/test/java/com/shekhargulati/ninetynine_problems/_02_arithmetic/P36Test.java +/Users/hansolo/Azul_Projects/99-problems/java8/src/test/java/com/shekhargulati/random/RandomProblem004Test.java +/Users/hansolo/Azul_Projects/99-problems/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P11Test.java +/Users/hansolo/Azul_Projects/99-problems/java8/src/test/java/com/shekhargulati/leetcode/Problem03Test.java +/Users/hansolo/Azul_Projects/99-problems/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P28Test.java +/Users/hansolo/Azul_Projects/99-problems/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P05Test.java +/Users/hansolo/Azul_Projects/99-problems/java8/src/test/java/com/shekhargulati/ninetynine_problems/_02_arithmetic/P41Test.java +/Users/hansolo/Azul_Projects/99-problems/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P10Test.java +/Users/hansolo/Azul_Projects/99-problems/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P16Test.java +/Users/hansolo/Azul_Projects/99-problems/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P04Test.java +/Users/hansolo/Azul_Projects/99-problems/java8/src/test/java/com/shekhargulati/ninetynine_problems/_01_lists/P22Test.java diff --git a/java8/target/surefire-reports/TEST-com.shekhargulati.codegolf.AcronymMakerTest.xml b/java8/target/surefire-reports/TEST-com.shekhargulati.codegolf.AcronymMakerTest.xml new file mode 100644 index 00000000..0acce1f5 --- /dev/null +++ b/java8/target/surefire-reports/TEST-com.shekhargulati.codegolf.AcronymMakerTest.xml @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/java8/target/surefire-reports/TEST-com.shekhargulati.fortytwo_problems.Problem01Test.xml b/java8/target/surefire-reports/TEST-com.shekhargulati.fortytwo_problems.Problem01Test.xml new file mode 100644 index 00000000..436ba3a0 --- /dev/null +++ b/java8/target/surefire-reports/TEST-com.shekhargulati.fortytwo_problems.Problem01Test.xml @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/java8/target/surefire-reports/TEST-com.shekhargulati.leetcode.Problem01Test.xml b/java8/target/surefire-reports/TEST-com.shekhargulati.leetcode.Problem01Test.xml new file mode 100644 index 00000000..398e8c1e --- /dev/null +++ b/java8/target/surefire-reports/TEST-com.shekhargulati.leetcode.Problem01Test.xml @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/java8/target/surefire-reports/TEST-com.shekhargulati.leetcode.Problem03Test.xml b/java8/target/surefire-reports/TEST-com.shekhargulati.leetcode.Problem03Test.xml new file mode 100644 index 00000000..ef77c99b --- /dev/null +++ b/java8/target/surefire-reports/TEST-com.shekhargulati.leetcode.Problem03Test.xml @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/java8/target/surefire-reports/TEST-com.shekhargulati.leetcode.algorithms.Problem05Test.xml b/java8/target/surefire-reports/TEST-com.shekhargulati.leetcode.algorithms.Problem05Test.xml new file mode 100644 index 00000000..dbedc66e --- /dev/null +++ b/java8/target/surefire-reports/TEST-com.shekhargulati.leetcode.algorithms.Problem05Test.xml @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._01_lists.P01Test.xml b/java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._01_lists.P01Test.xml new file mode 100644 index 00000000..6103bdb3 --- /dev/null +++ b/java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._01_lists.P01Test.xml @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._01_lists.P02Test.xml b/java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._01_lists.P02Test.xml new file mode 100644 index 00000000..d7e16e77 --- /dev/null +++ b/java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._01_lists.P02Test.xml @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._01_lists.P03Test.xml b/java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._01_lists.P03Test.xml new file mode 100644 index 00000000..8fd29248 --- /dev/null +++ b/java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._01_lists.P03Test.xml @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._01_lists.P04Test.xml b/java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._01_lists.P04Test.xml new file mode 100644 index 00000000..e75d208a --- /dev/null +++ b/java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._01_lists.P04Test.xml @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._01_lists.P05Test.xml b/java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._01_lists.P05Test.xml new file mode 100644 index 00000000..42530076 --- /dev/null +++ b/java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._01_lists.P05Test.xml @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._01_lists.P06Test.xml b/java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._01_lists.P06Test.xml new file mode 100644 index 00000000..ab64c149 --- /dev/null +++ b/java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._01_lists.P06Test.xml @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._01_lists.P07Test.xml b/java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._01_lists.P07Test.xml new file mode 100644 index 00000000..00efb6d6 --- /dev/null +++ b/java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._01_lists.P07Test.xml @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._01_lists.P08Test.xml b/java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._01_lists.P08Test.xml new file mode 100644 index 00000000..8b61152d --- /dev/null +++ b/java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._01_lists.P08Test.xml @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._01_lists.P09Test.xml b/java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._01_lists.P09Test.xml new file mode 100644 index 00000000..ccdfdacd --- /dev/null +++ b/java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._01_lists.P09Test.xml @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._01_lists.P10Test.xml b/java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._01_lists.P10Test.xml new file mode 100644 index 00000000..b101ceac --- /dev/null +++ b/java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._01_lists.P10Test.xml @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._01_lists.P11Test.xml b/java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._01_lists.P11Test.xml new file mode 100644 index 00000000..e9975cbf --- /dev/null +++ b/java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._01_lists.P11Test.xml @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._01_lists.P12Test.xml b/java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._01_lists.P12Test.xml new file mode 100644 index 00000000..9183e1b0 --- /dev/null +++ b/java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._01_lists.P12Test.xml @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._01_lists.P13Test.xml b/java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._01_lists.P13Test.xml new file mode 100644 index 00000000..156bd844 --- /dev/null +++ b/java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._01_lists.P13Test.xml @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._01_lists.P14Test.xml b/java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._01_lists.P14Test.xml new file mode 100644 index 00000000..597b4725 --- /dev/null +++ b/java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._01_lists.P14Test.xml @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._01_lists.P15Test.xml b/java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._01_lists.P15Test.xml new file mode 100644 index 00000000..14ea7cdf --- /dev/null +++ b/java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._01_lists.P15Test.xml @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._01_lists.P16Test.xml b/java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._01_lists.P16Test.xml new file mode 100644 index 00000000..1d8fe427 --- /dev/null +++ b/java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._01_lists.P16Test.xml @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._01_lists.P17Test.xml b/java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._01_lists.P17Test.xml new file mode 100644 index 00000000..fe82158b --- /dev/null +++ b/java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._01_lists.P17Test.xml @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._01_lists.P18Test.xml b/java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._01_lists.P18Test.xml new file mode 100644 index 00000000..695755d6 --- /dev/null +++ b/java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._01_lists.P18Test.xml @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._01_lists.P19Test.xml b/java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._01_lists.P19Test.xml new file mode 100644 index 00000000..ebe5acf9 --- /dev/null +++ b/java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._01_lists.P19Test.xml @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._01_lists.P20Test.xml b/java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._01_lists.P20Test.xml new file mode 100644 index 00000000..1dfd29d9 --- /dev/null +++ b/java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._01_lists.P20Test.xml @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._01_lists.P21Test.xml b/java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._01_lists.P21Test.xml new file mode 100644 index 00000000..719f28e3 --- /dev/null +++ b/java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._01_lists.P21Test.xml @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._01_lists.P22Test.xml b/java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._01_lists.P22Test.xml new file mode 100644 index 00000000..b9ca2b64 --- /dev/null +++ b/java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._01_lists.P22Test.xml @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._01_lists.P23Test.xml b/java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._01_lists.P23Test.xml new file mode 100644 index 00000000..91208295 --- /dev/null +++ b/java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._01_lists.P23Test.xml @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._01_lists.P24Test.xml b/java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._01_lists.P24Test.xml new file mode 100644 index 00000000..c03ede01 --- /dev/null +++ b/java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._01_lists.P24Test.xml @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._01_lists.P25Test.xml b/java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._01_lists.P25Test.xml new file mode 100644 index 00000000..9c5030ce --- /dev/null +++ b/java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._01_lists.P25Test.xml @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._01_lists.P26Test.xml b/java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._01_lists.P26Test.xml new file mode 100644 index 00000000..0d799ee6 --- /dev/null +++ b/java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._01_lists.P26Test.xml @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._01_lists.P27Test.xml b/java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._01_lists.P27Test.xml new file mode 100644 index 00000000..bfac7ec7 --- /dev/null +++ b/java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._01_lists.P27Test.xml @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._01_lists.P28Test.xml b/java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._01_lists.P28Test.xml new file mode 100644 index 00000000..db523390 --- /dev/null +++ b/java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._01_lists.P28Test.xml @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._02_arithmetic.P31Test.xml b/java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._02_arithmetic.P31Test.xml new file mode 100644 index 00000000..61b1ec62 --- /dev/null +++ b/java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._02_arithmetic.P31Test.xml @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._02_arithmetic.P32Test.xml b/java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._02_arithmetic.P32Test.xml new file mode 100644 index 00000000..728ef9e3 --- /dev/null +++ b/java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._02_arithmetic.P32Test.xml @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._02_arithmetic.P33Test.xml b/java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._02_arithmetic.P33Test.xml new file mode 100644 index 00000000..b6015861 --- /dev/null +++ b/java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._02_arithmetic.P33Test.xml @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._02_arithmetic.P34Test.xml b/java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._02_arithmetic.P34Test.xml new file mode 100644 index 00000000..4ff836c4 --- /dev/null +++ b/java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._02_arithmetic.P34Test.xml @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._02_arithmetic.P35Test.xml b/java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._02_arithmetic.P35Test.xml new file mode 100644 index 00000000..ddb549ee --- /dev/null +++ b/java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._02_arithmetic.P35Test.xml @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._02_arithmetic.P36Test.xml b/java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._02_arithmetic.P36Test.xml new file mode 100644 index 00000000..af832fb5 --- /dev/null +++ b/java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._02_arithmetic.P36Test.xml @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._02_arithmetic.P37Test.xml b/java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._02_arithmetic.P37Test.xml new file mode 100644 index 00000000..0d02afc8 --- /dev/null +++ b/java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._02_arithmetic.P37Test.xml @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._02_arithmetic.P38Test.xml b/java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._02_arithmetic.P38Test.xml new file mode 100644 index 00000000..542a46fd --- /dev/null +++ b/java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._02_arithmetic.P38Test.xml @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._02_arithmetic.P39Test.xml b/java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._02_arithmetic.P39Test.xml new file mode 100644 index 00000000..8196e3ab --- /dev/null +++ b/java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._02_arithmetic.P39Test.xml @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._02_arithmetic.P40Test.xml b/java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._02_arithmetic.P40Test.xml new file mode 100644 index 00000000..79002a39 --- /dev/null +++ b/java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._02_arithmetic.P40Test.xml @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._02_arithmetic.P41Test.xml b/java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._02_arithmetic.P41Test.xml new file mode 100644 index 00000000..c04eb4ae --- /dev/null +++ b/java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._02_arithmetic.P41Test.xml @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._03_logic_and_codes.P46Test.xml b/java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._03_logic_and_codes.P46Test.xml new file mode 100644 index 00000000..278117f2 --- /dev/null +++ b/java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._03_logic_and_codes.P46Test.xml @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._03_logic_and_codes.P49Test.xml b/java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._03_logic_and_codes.P49Test.xml new file mode 100644 index 00000000..cfe96218 --- /dev/null +++ b/java8/target/surefire-reports/TEST-com.shekhargulati.ninetynine_problems._03_logic_and_codes.P49Test.xml @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/java8/target/surefire-reports/TEST-com.shekhargulati.random.RandomProblem002Test.xml b/java8/target/surefire-reports/TEST-com.shekhargulati.random.RandomProblem002Test.xml new file mode 100644 index 00000000..50590003 --- /dev/null +++ b/java8/target/surefire-reports/TEST-com.shekhargulati.random.RandomProblem002Test.xml @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/java8/target/surefire-reports/TEST-com.shekhargulati.random.RandomProblem003Test.xml b/java8/target/surefire-reports/TEST-com.shekhargulati.random.RandomProblem003Test.xml new file mode 100644 index 00000000..f85c41e9 --- /dev/null +++ b/java8/target/surefire-reports/TEST-com.shekhargulati.random.RandomProblem003Test.xml @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/java8/target/surefire-reports/TEST-com.shekhargulati.random.RandomProblem004Test.xml b/java8/target/surefire-reports/TEST-com.shekhargulati.random.RandomProblem004Test.xml new file mode 100644 index 00000000..3fc3b348 --- /dev/null +++ b/java8/target/surefire-reports/TEST-com.shekhargulati.random.RandomProblem004Test.xml @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/java8/target/surefire-reports/TEST-com.shekhargulati.random.algebra.RandomProblem005Test.xml b/java8/target/surefire-reports/TEST-com.shekhargulati.random.algebra.RandomProblem005Test.xml new file mode 100644 index 00000000..252df625 --- /dev/null +++ b/java8/target/surefire-reports/TEST-com.shekhargulati.random.algebra.RandomProblem005Test.xml @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/java8/target/surefire-reports/TEST-com.shekhargulati.tadm.ch03.Problem3_1Test.xml b/java8/target/surefire-reports/TEST-com.shekhargulati.tadm.ch03.Problem3_1Test.xml new file mode 100644 index 00000000..56843cec --- /dev/null +++ b/java8/target/surefire-reports/TEST-com.shekhargulati.tadm.ch03.Problem3_1Test.xml @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/java8/target/surefire-reports/TEST-com.shekhargulati.tadm.ch03.Problem3_2Test.xml b/java8/target/surefire-reports/TEST-com.shekhargulati.tadm.ch03.Problem3_2Test.xml new file mode 100644 index 00000000..2ce8c727 --- /dev/null +++ b/java8/target/surefire-reports/TEST-com.shekhargulati.tadm.ch03.Problem3_2Test.xml @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/java8/target/surefire-reports/TEST-com.shekhargulati.tadm.ch04.examples.SelectionSortTest.xml b/java8/target/surefire-reports/TEST-com.shekhargulati.tadm.ch04.examples.SelectionSortTest.xml new file mode 100644 index 00000000..5bb4344d --- /dev/null +++ b/java8/target/surefire-reports/TEST-com.shekhargulati.tadm.ch04.examples.SelectionSortTest.xml @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/java8/target/surefire-reports/TEST-com.shekhargulati.tadm.ch04.excercises.Problem4_1Test.xml b/java8/target/surefire-reports/TEST-com.shekhargulati.tadm.ch04.excercises.Problem4_1Test.xml new file mode 100644 index 00000000..529989f1 --- /dev/null +++ b/java8/target/surefire-reports/TEST-com.shekhargulati.tadm.ch04.excercises.Problem4_1Test.xml @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/java8/target/surefire-reports/TEST-com.shekhargulati.tadm.ch04.excercises.Problem4_2Test.xml b/java8/target/surefire-reports/TEST-com.shekhargulati.tadm.ch04.excercises.Problem4_2Test.xml new file mode 100644 index 00000000..68028148 --- /dev/null +++ b/java8/target/surefire-reports/TEST-com.shekhargulati.tadm.ch04.excercises.Problem4_2Test.xml @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/java8/target/surefire-reports/TEST-com.shekhargulati.tadm.ch04.excercises.Problem4_5Test.xml b/java8/target/surefire-reports/TEST-com.shekhargulati.tadm.ch04.excercises.Problem4_5Test.xml new file mode 100644 index 00000000..0411e7a8 --- /dev/null +++ b/java8/target/surefire-reports/TEST-com.shekhargulati.tadm.ch04.excercises.Problem4_5Test.xml @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/java8/target/surefire-reports/TEST-com.shekhargulati.tadm.ch04.excercises.Problem4_6Test.xml b/java8/target/surefire-reports/TEST-com.shekhargulati.tadm.ch04.excercises.Problem4_6Test.xml new file mode 100644 index 00000000..cb5dabb2 --- /dev/null +++ b/java8/target/surefire-reports/TEST-com.shekhargulati.tadm.ch04.excercises.Problem4_6Test.xml @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/java8/target/surefire-reports/com.shekhargulati.codegolf.AcronymMakerTest.txt b/java8/target/surefire-reports/com.shekhargulati.codegolf.AcronymMakerTest.txt new file mode 100644 index 00000000..82f8dcfe --- /dev/null +++ b/java8/target/surefire-reports/com.shekhargulati.codegolf.AcronymMakerTest.txt @@ -0,0 +1,4 @@ +------------------------------------------------------------------------------- +Test set: com.shekhargulati.codegolf.AcronymMakerTest +------------------------------------------------------------------------------- +Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.004 sec diff --git a/java8/target/surefire-reports/com.shekhargulati.fortytwo_problems.Problem01Test.txt b/java8/target/surefire-reports/com.shekhargulati.fortytwo_problems.Problem01Test.txt new file mode 100644 index 00000000..b50f3dea --- /dev/null +++ b/java8/target/surefire-reports/com.shekhargulati.fortytwo_problems.Problem01Test.txt @@ -0,0 +1,4 @@ +------------------------------------------------------------------------------- +Test set: com.shekhargulati.fortytwo_problems.Problem01Test +------------------------------------------------------------------------------- +Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.004 sec diff --git a/java8/target/surefire-reports/com.shekhargulati.leetcode.Problem01Test.txt b/java8/target/surefire-reports/com.shekhargulati.leetcode.Problem01Test.txt new file mode 100644 index 00000000..769640ec --- /dev/null +++ b/java8/target/surefire-reports/com.shekhargulati.leetcode.Problem01Test.txt @@ -0,0 +1,4 @@ +------------------------------------------------------------------------------- +Test set: com.shekhargulati.leetcode.Problem01Test +------------------------------------------------------------------------------- +Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.047 sec diff --git a/java8/target/surefire-reports/com.shekhargulati.leetcode.Problem03Test.txt b/java8/target/surefire-reports/com.shekhargulati.leetcode.Problem03Test.txt new file mode 100644 index 00000000..3b1b03c9 --- /dev/null +++ b/java8/target/surefire-reports/com.shekhargulati.leetcode.Problem03Test.txt @@ -0,0 +1,4 @@ +------------------------------------------------------------------------------- +Test set: com.shekhargulati.leetcode.Problem03Test +------------------------------------------------------------------------------- +Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.002 sec diff --git a/java8/target/surefire-reports/com.shekhargulati.leetcode.algorithms.Problem05Test.txt b/java8/target/surefire-reports/com.shekhargulati.leetcode.algorithms.Problem05Test.txt new file mode 100644 index 00000000..4d64fc19 --- /dev/null +++ b/java8/target/surefire-reports/com.shekhargulati.leetcode.algorithms.Problem05Test.txt @@ -0,0 +1,4 @@ +------------------------------------------------------------------------------- +Test set: com.shekhargulati.leetcode.algorithms.Problem05Test +------------------------------------------------------------------------------- +Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.007 sec diff --git a/java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._01_lists.P01Test.txt b/java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._01_lists.P01Test.txt new file mode 100644 index 00000000..075db7ff --- /dev/null +++ b/java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._01_lists.P01Test.txt @@ -0,0 +1,4 @@ +------------------------------------------------------------------------------- +Test set: com.shekhargulati.ninetynine_problems._01_lists.P01Test +------------------------------------------------------------------------------- +Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.004 sec diff --git a/java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._01_lists.P02Test.txt b/java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._01_lists.P02Test.txt new file mode 100644 index 00000000..41f012db --- /dev/null +++ b/java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._01_lists.P02Test.txt @@ -0,0 +1,4 @@ +------------------------------------------------------------------------------- +Test set: com.shekhargulati.ninetynine_problems._01_lists.P02Test +------------------------------------------------------------------------------- +Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.002 sec diff --git a/java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._01_lists.P03Test.txt b/java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._01_lists.P03Test.txt new file mode 100644 index 00000000..84dc5e40 --- /dev/null +++ b/java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._01_lists.P03Test.txt @@ -0,0 +1,4 @@ +------------------------------------------------------------------------------- +Test set: com.shekhargulati.ninetynine_problems._01_lists.P03Test +------------------------------------------------------------------------------- +Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.002 sec diff --git a/java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._01_lists.P04Test.txt b/java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._01_lists.P04Test.txt new file mode 100644 index 00000000..d74aee37 --- /dev/null +++ b/java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._01_lists.P04Test.txt @@ -0,0 +1,4 @@ +------------------------------------------------------------------------------- +Test set: com.shekhargulati.ninetynine_problems._01_lists.P04Test +------------------------------------------------------------------------------- +Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.001 sec diff --git a/java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._01_lists.P05Test.txt b/java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._01_lists.P05Test.txt new file mode 100644 index 00000000..021e3860 --- /dev/null +++ b/java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._01_lists.P05Test.txt @@ -0,0 +1,4 @@ +------------------------------------------------------------------------------- +Test set: com.shekhargulati.ninetynine_problems._01_lists.P05Test +------------------------------------------------------------------------------- +Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.003 sec diff --git a/java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._01_lists.P06Test.txt b/java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._01_lists.P06Test.txt new file mode 100644 index 00000000..1e0e05e8 --- /dev/null +++ b/java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._01_lists.P06Test.txt @@ -0,0 +1,4 @@ +------------------------------------------------------------------------------- +Test set: com.shekhargulati.ninetynine_problems._01_lists.P06Test +------------------------------------------------------------------------------- +Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.003 sec diff --git a/java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._01_lists.P07Test.txt b/java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._01_lists.P07Test.txt new file mode 100644 index 00000000..bf0922a3 --- /dev/null +++ b/java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._01_lists.P07Test.txt @@ -0,0 +1,4 @@ +------------------------------------------------------------------------------- +Test set: com.shekhargulati.ninetynine_problems._01_lists.P07Test +------------------------------------------------------------------------------- +Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.008 sec diff --git a/java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._01_lists.P08Test.txt b/java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._01_lists.P08Test.txt new file mode 100644 index 00000000..ff6af9b1 --- /dev/null +++ b/java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._01_lists.P08Test.txt @@ -0,0 +1,4 @@ +------------------------------------------------------------------------------- +Test set: com.shekhargulati.ninetynine_problems._01_lists.P08Test +------------------------------------------------------------------------------- +Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.001 sec diff --git a/java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._01_lists.P09Test.txt b/java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._01_lists.P09Test.txt new file mode 100644 index 00000000..4c6fa8d7 --- /dev/null +++ b/java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._01_lists.P09Test.txt @@ -0,0 +1,4 @@ +------------------------------------------------------------------------------- +Test set: com.shekhargulati.ninetynine_problems._01_lists.P09Test +------------------------------------------------------------------------------- +Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.001 sec diff --git a/java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._01_lists.P10Test.txt b/java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._01_lists.P10Test.txt new file mode 100644 index 00000000..041dad7e --- /dev/null +++ b/java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._01_lists.P10Test.txt @@ -0,0 +1,4 @@ +------------------------------------------------------------------------------- +Test set: com.shekhargulati.ninetynine_problems._01_lists.P10Test +------------------------------------------------------------------------------- +Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.001 sec diff --git a/java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._01_lists.P11Test.txt b/java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._01_lists.P11Test.txt new file mode 100644 index 00000000..e7e14e85 --- /dev/null +++ b/java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._01_lists.P11Test.txt @@ -0,0 +1,4 @@ +------------------------------------------------------------------------------- +Test set: com.shekhargulati.ninetynine_problems._01_lists.P11Test +------------------------------------------------------------------------------- +Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.001 sec diff --git a/java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._01_lists.P12Test.txt b/java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._01_lists.P12Test.txt new file mode 100644 index 00000000..43f27200 --- /dev/null +++ b/java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._01_lists.P12Test.txt @@ -0,0 +1,4 @@ +------------------------------------------------------------------------------- +Test set: com.shekhargulati.ninetynine_problems._01_lists.P12Test +------------------------------------------------------------------------------- +Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.001 sec diff --git a/java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._01_lists.P13Test.txt b/java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._01_lists.P13Test.txt new file mode 100644 index 00000000..82ea4a25 --- /dev/null +++ b/java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._01_lists.P13Test.txt @@ -0,0 +1,4 @@ +------------------------------------------------------------------------------- +Test set: com.shekhargulati.ninetynine_problems._01_lists.P13Test +------------------------------------------------------------------------------- +Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.001 sec diff --git a/java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._01_lists.P14Test.txt b/java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._01_lists.P14Test.txt new file mode 100644 index 00000000..9d220b14 --- /dev/null +++ b/java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._01_lists.P14Test.txt @@ -0,0 +1,4 @@ +------------------------------------------------------------------------------- +Test set: com.shekhargulati.ninetynine_problems._01_lists.P14Test +------------------------------------------------------------------------------- +Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.001 sec diff --git a/java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._01_lists.P15Test.txt b/java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._01_lists.P15Test.txt new file mode 100644 index 00000000..66b69050 --- /dev/null +++ b/java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._01_lists.P15Test.txt @@ -0,0 +1,4 @@ +------------------------------------------------------------------------------- +Test set: com.shekhargulati.ninetynine_problems._01_lists.P15Test +------------------------------------------------------------------------------- +Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.003 sec diff --git a/java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._01_lists.P16Test.txt b/java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._01_lists.P16Test.txt new file mode 100644 index 00000000..151d9971 --- /dev/null +++ b/java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._01_lists.P16Test.txt @@ -0,0 +1,4 @@ +------------------------------------------------------------------------------- +Test set: com.shekhargulati.ninetynine_problems._01_lists.P16Test +------------------------------------------------------------------------------- +Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.002 sec diff --git a/java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._01_lists.P17Test.txt b/java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._01_lists.P17Test.txt new file mode 100644 index 00000000..b70eaa70 --- /dev/null +++ b/java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._01_lists.P17Test.txt @@ -0,0 +1,4 @@ +------------------------------------------------------------------------------- +Test set: com.shekhargulati.ninetynine_problems._01_lists.P17Test +------------------------------------------------------------------------------- +Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.001 sec diff --git a/java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._01_lists.P18Test.txt b/java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._01_lists.P18Test.txt new file mode 100644 index 00000000..67033ae0 --- /dev/null +++ b/java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._01_lists.P18Test.txt @@ -0,0 +1,4 @@ +------------------------------------------------------------------------------- +Test set: com.shekhargulati.ninetynine_problems._01_lists.P18Test +------------------------------------------------------------------------------- +Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.001 sec diff --git a/java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._01_lists.P19Test.txt b/java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._01_lists.P19Test.txt new file mode 100644 index 00000000..e5bee4b5 --- /dev/null +++ b/java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._01_lists.P19Test.txt @@ -0,0 +1,4 @@ +------------------------------------------------------------------------------- +Test set: com.shekhargulati.ninetynine_problems._01_lists.P19Test +------------------------------------------------------------------------------- +Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.001 sec diff --git a/java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._01_lists.P20Test.txt b/java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._01_lists.P20Test.txt new file mode 100644 index 00000000..6efe627a --- /dev/null +++ b/java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._01_lists.P20Test.txt @@ -0,0 +1,4 @@ +------------------------------------------------------------------------------- +Test set: com.shekhargulati.ninetynine_problems._01_lists.P20Test +------------------------------------------------------------------------------- +Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.004 sec diff --git a/java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._01_lists.P21Test.txt b/java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._01_lists.P21Test.txt new file mode 100644 index 00000000..17116192 --- /dev/null +++ b/java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._01_lists.P21Test.txt @@ -0,0 +1,4 @@ +------------------------------------------------------------------------------- +Test set: com.shekhargulati.ninetynine_problems._01_lists.P21Test +------------------------------------------------------------------------------- +Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.003 sec diff --git a/java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._01_lists.P22Test.txt b/java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._01_lists.P22Test.txt new file mode 100644 index 00000000..2d8d3337 --- /dev/null +++ b/java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._01_lists.P22Test.txt @@ -0,0 +1,4 @@ +------------------------------------------------------------------------------- +Test set: com.shekhargulati.ninetynine_problems._01_lists.P22Test +------------------------------------------------------------------------------- +Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.001 sec diff --git a/java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._01_lists.P23Test.txt b/java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._01_lists.P23Test.txt new file mode 100644 index 00000000..92360c9a --- /dev/null +++ b/java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._01_lists.P23Test.txt @@ -0,0 +1,4 @@ +------------------------------------------------------------------------------- +Test set: com.shekhargulati.ninetynine_problems._01_lists.P23Test +------------------------------------------------------------------------------- +Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.001 sec diff --git a/java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._01_lists.P24Test.txt b/java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._01_lists.P24Test.txt new file mode 100644 index 00000000..d43ab592 --- /dev/null +++ b/java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._01_lists.P24Test.txt @@ -0,0 +1,4 @@ +------------------------------------------------------------------------------- +Test set: com.shekhargulati.ninetynine_problems._01_lists.P24Test +------------------------------------------------------------------------------- +Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.001 sec diff --git a/java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._01_lists.P25Test.txt b/java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._01_lists.P25Test.txt new file mode 100644 index 00000000..f9efdb7e --- /dev/null +++ b/java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._01_lists.P25Test.txt @@ -0,0 +1,4 @@ +------------------------------------------------------------------------------- +Test set: com.shekhargulati.ninetynine_problems._01_lists.P25Test +------------------------------------------------------------------------------- +Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.001 sec diff --git a/java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._01_lists.P26Test.txt b/java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._01_lists.P26Test.txt new file mode 100644 index 00000000..7533842c --- /dev/null +++ b/java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._01_lists.P26Test.txt @@ -0,0 +1,4 @@ +------------------------------------------------------------------------------- +Test set: com.shekhargulati.ninetynine_problems._01_lists.P26Test +------------------------------------------------------------------------------- +Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.007 sec diff --git a/java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._01_lists.P27Test.txt b/java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._01_lists.P27Test.txt new file mode 100644 index 00000000..0c75a6a1 --- /dev/null +++ b/java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._01_lists.P27Test.txt @@ -0,0 +1,4 @@ +------------------------------------------------------------------------------- +Test set: com.shekhargulati.ninetynine_problems._01_lists.P27Test +------------------------------------------------------------------------------- +Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.146 sec diff --git a/java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._01_lists.P28Test.txt b/java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._01_lists.P28Test.txt new file mode 100644 index 00000000..96558f26 --- /dev/null +++ b/java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._01_lists.P28Test.txt @@ -0,0 +1,4 @@ +------------------------------------------------------------------------------- +Test set: com.shekhargulati.ninetynine_problems._01_lists.P28Test +------------------------------------------------------------------------------- +Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.005 sec diff --git a/java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._02_arithmetic.P31Test.txt b/java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._02_arithmetic.P31Test.txt new file mode 100644 index 00000000..4a9855a1 --- /dev/null +++ b/java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._02_arithmetic.P31Test.txt @@ -0,0 +1,4 @@ +------------------------------------------------------------------------------- +Test set: com.shekhargulati.ninetynine_problems._02_arithmetic.P31Test +------------------------------------------------------------------------------- +Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0 sec diff --git a/java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._02_arithmetic.P32Test.txt b/java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._02_arithmetic.P32Test.txt new file mode 100644 index 00000000..8390a83a --- /dev/null +++ b/java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._02_arithmetic.P32Test.txt @@ -0,0 +1,4 @@ +------------------------------------------------------------------------------- +Test set: com.shekhargulati.ninetynine_problems._02_arithmetic.P32Test +------------------------------------------------------------------------------- +Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.005 sec diff --git a/java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._02_arithmetic.P33Test.txt b/java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._02_arithmetic.P33Test.txt new file mode 100644 index 00000000..165d4831 --- /dev/null +++ b/java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._02_arithmetic.P33Test.txt @@ -0,0 +1,4 @@ +------------------------------------------------------------------------------- +Test set: com.shekhargulati.ninetynine_problems._02_arithmetic.P33Test +------------------------------------------------------------------------------- +Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.003 sec diff --git a/java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._02_arithmetic.P34Test.txt b/java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._02_arithmetic.P34Test.txt new file mode 100644 index 00000000..4461ed14 --- /dev/null +++ b/java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._02_arithmetic.P34Test.txt @@ -0,0 +1,4 @@ +------------------------------------------------------------------------------- +Test set: com.shekhargulati.ninetynine_problems._02_arithmetic.P34Test +------------------------------------------------------------------------------- +Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.012 sec diff --git a/java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._02_arithmetic.P35Test.txt b/java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._02_arithmetic.P35Test.txt new file mode 100644 index 00000000..62b09d85 --- /dev/null +++ b/java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._02_arithmetic.P35Test.txt @@ -0,0 +1,4 @@ +------------------------------------------------------------------------------- +Test set: com.shekhargulati.ninetynine_problems._02_arithmetic.P35Test +------------------------------------------------------------------------------- +Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.002 sec diff --git a/java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._02_arithmetic.P36Test.txt b/java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._02_arithmetic.P36Test.txt new file mode 100644 index 00000000..79627e84 --- /dev/null +++ b/java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._02_arithmetic.P36Test.txt @@ -0,0 +1,4 @@ +------------------------------------------------------------------------------- +Test set: com.shekhargulati.ninetynine_problems._02_arithmetic.P36Test +------------------------------------------------------------------------------- +Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.34 sec diff --git a/java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._02_arithmetic.P37Test.txt b/java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._02_arithmetic.P37Test.txt new file mode 100644 index 00000000..e8c8bff9 --- /dev/null +++ b/java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._02_arithmetic.P37Test.txt @@ -0,0 +1,4 @@ +------------------------------------------------------------------------------- +Test set: com.shekhargulati.ninetynine_problems._02_arithmetic.P37Test +------------------------------------------------------------------------------- +Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0 sec diff --git a/java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._02_arithmetic.P38Test.txt b/java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._02_arithmetic.P38Test.txt new file mode 100644 index 00000000..18ab91ef --- /dev/null +++ b/java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._02_arithmetic.P38Test.txt @@ -0,0 +1,4 @@ +------------------------------------------------------------------------------- +Test set: com.shekhargulati.ninetynine_problems._02_arithmetic.P38Test +------------------------------------------------------------------------------- +Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0 sec diff --git a/java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._02_arithmetic.P39Test.txt b/java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._02_arithmetic.P39Test.txt new file mode 100644 index 00000000..254e7784 --- /dev/null +++ b/java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._02_arithmetic.P39Test.txt @@ -0,0 +1,4 @@ +------------------------------------------------------------------------------- +Test set: com.shekhargulati.ninetynine_problems._02_arithmetic.P39Test +------------------------------------------------------------------------------- +Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.001 sec diff --git a/java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._02_arithmetic.P40Test.txt b/java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._02_arithmetic.P40Test.txt new file mode 100644 index 00000000..e4e81fb8 --- /dev/null +++ b/java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._02_arithmetic.P40Test.txt @@ -0,0 +1,4 @@ +------------------------------------------------------------------------------- +Test set: com.shekhargulati.ninetynine_problems._02_arithmetic.P40Test +------------------------------------------------------------------------------- +Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0 sec diff --git a/java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._02_arithmetic.P41Test.txt b/java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._02_arithmetic.P41Test.txt new file mode 100644 index 00000000..19a0f557 --- /dev/null +++ b/java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._02_arithmetic.P41Test.txt @@ -0,0 +1,4 @@ +------------------------------------------------------------------------------- +Test set: com.shekhargulati.ninetynine_problems._02_arithmetic.P41Test +------------------------------------------------------------------------------- +Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.011 sec diff --git a/java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._03_logic_and_codes.P46Test.txt b/java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._03_logic_and_codes.P46Test.txt new file mode 100644 index 00000000..6a4865ac --- /dev/null +++ b/java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._03_logic_and_codes.P46Test.txt @@ -0,0 +1,4 @@ +------------------------------------------------------------------------------- +Test set: com.shekhargulati.ninetynine_problems._03_logic_and_codes.P46Test +------------------------------------------------------------------------------- +Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.001 sec diff --git a/java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._03_logic_and_codes.P49Test.txt b/java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._03_logic_and_codes.P49Test.txt new file mode 100644 index 00000000..520d50bd --- /dev/null +++ b/java8/target/surefire-reports/com.shekhargulati.ninetynine_problems._03_logic_and_codes.P49Test.txt @@ -0,0 +1,4 @@ +------------------------------------------------------------------------------- +Test set: com.shekhargulati.ninetynine_problems._03_logic_and_codes.P49Test +------------------------------------------------------------------------------- +Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.004 sec diff --git a/java8/target/surefire-reports/com.shekhargulati.random.RandomProblem002Test.txt b/java8/target/surefire-reports/com.shekhargulati.random.RandomProblem002Test.txt new file mode 100644 index 00000000..26e5c4dc --- /dev/null +++ b/java8/target/surefire-reports/com.shekhargulati.random.RandomProblem002Test.txt @@ -0,0 +1,4 @@ +------------------------------------------------------------------------------- +Test set: com.shekhargulati.random.RandomProblem002Test +------------------------------------------------------------------------------- +Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.018 sec diff --git a/java8/target/surefire-reports/com.shekhargulati.random.RandomProblem003Test.txt b/java8/target/surefire-reports/com.shekhargulati.random.RandomProblem003Test.txt new file mode 100644 index 00000000..f91fea27 --- /dev/null +++ b/java8/target/surefire-reports/com.shekhargulati.random.RandomProblem003Test.txt @@ -0,0 +1,4 @@ +------------------------------------------------------------------------------- +Test set: com.shekhargulati.random.RandomProblem003Test +------------------------------------------------------------------------------- +Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0 sec diff --git a/java8/target/surefire-reports/com.shekhargulati.random.RandomProblem004Test.txt b/java8/target/surefire-reports/com.shekhargulati.random.RandomProblem004Test.txt new file mode 100644 index 00000000..90b64924 --- /dev/null +++ b/java8/target/surefire-reports/com.shekhargulati.random.RandomProblem004Test.txt @@ -0,0 +1,4 @@ +------------------------------------------------------------------------------- +Test set: com.shekhargulati.random.RandomProblem004Test +------------------------------------------------------------------------------- +Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.001 sec diff --git a/java8/target/surefire-reports/com.shekhargulati.random.algebra.RandomProblem005Test.txt b/java8/target/surefire-reports/com.shekhargulati.random.algebra.RandomProblem005Test.txt new file mode 100644 index 00000000..faf6369c --- /dev/null +++ b/java8/target/surefire-reports/com.shekhargulati.random.algebra.RandomProblem005Test.txt @@ -0,0 +1,4 @@ +------------------------------------------------------------------------------- +Test set: com.shekhargulati.random.algebra.RandomProblem005Test +------------------------------------------------------------------------------- +Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.001 sec diff --git a/java8/target/surefire-reports/com.shekhargulati.tadm.ch03.Problem3_1Test.txt b/java8/target/surefire-reports/com.shekhargulati.tadm.ch03.Problem3_1Test.txt new file mode 100644 index 00000000..4c1ba7ef --- /dev/null +++ b/java8/target/surefire-reports/com.shekhargulati.tadm.ch03.Problem3_1Test.txt @@ -0,0 +1,4 @@ +------------------------------------------------------------------------------- +Test set: com.shekhargulati.tadm.ch03.Problem3_1Test +------------------------------------------------------------------------------- +Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.002 sec diff --git a/java8/target/surefire-reports/com.shekhargulati.tadm.ch03.Problem3_2Test.txt b/java8/target/surefire-reports/com.shekhargulati.tadm.ch03.Problem3_2Test.txt new file mode 100644 index 00000000..4d09d282 --- /dev/null +++ b/java8/target/surefire-reports/com.shekhargulati.tadm.ch03.Problem3_2Test.txt @@ -0,0 +1,4 @@ +------------------------------------------------------------------------------- +Test set: com.shekhargulati.tadm.ch03.Problem3_2Test +------------------------------------------------------------------------------- +Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.005 sec diff --git a/java8/target/surefire-reports/com.shekhargulati.tadm.ch04.examples.SelectionSortTest.txt b/java8/target/surefire-reports/com.shekhargulati.tadm.ch04.examples.SelectionSortTest.txt new file mode 100644 index 00000000..4ab665a6 --- /dev/null +++ b/java8/target/surefire-reports/com.shekhargulati.tadm.ch04.examples.SelectionSortTest.txt @@ -0,0 +1,4 @@ +------------------------------------------------------------------------------- +Test set: com.shekhargulati.tadm.ch04.examples.SelectionSortTest +------------------------------------------------------------------------------- +Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0 sec diff --git a/java8/target/surefire-reports/com.shekhargulati.tadm.ch04.excercises.Problem4_1Test.txt b/java8/target/surefire-reports/com.shekhargulati.tadm.ch04.excercises.Problem4_1Test.txt new file mode 100644 index 00000000..9f800f09 --- /dev/null +++ b/java8/target/surefire-reports/com.shekhargulati.tadm.ch04.excercises.Problem4_1Test.txt @@ -0,0 +1,4 @@ +------------------------------------------------------------------------------- +Test set: com.shekhargulati.tadm.ch04.excercises.Problem4_1Test +------------------------------------------------------------------------------- +Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.001 sec diff --git a/java8/target/surefire-reports/com.shekhargulati.tadm.ch04.excercises.Problem4_2Test.txt b/java8/target/surefire-reports/com.shekhargulati.tadm.ch04.excercises.Problem4_2Test.txt new file mode 100644 index 00000000..0e124f74 --- /dev/null +++ b/java8/target/surefire-reports/com.shekhargulati.tadm.ch04.excercises.Problem4_2Test.txt @@ -0,0 +1,4 @@ +------------------------------------------------------------------------------- +Test set: com.shekhargulati.tadm.ch04.excercises.Problem4_2Test +------------------------------------------------------------------------------- +Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.086 sec diff --git a/java8/target/surefire-reports/com.shekhargulati.tadm.ch04.excercises.Problem4_5Test.txt b/java8/target/surefire-reports/com.shekhargulati.tadm.ch04.excercises.Problem4_5Test.txt new file mode 100644 index 00000000..14ae6a5d --- /dev/null +++ b/java8/target/surefire-reports/com.shekhargulati.tadm.ch04.excercises.Problem4_5Test.txt @@ -0,0 +1,4 @@ +------------------------------------------------------------------------------- +Test set: com.shekhargulati.tadm.ch04.excercises.Problem4_5Test +------------------------------------------------------------------------------- +Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0 sec diff --git a/java8/target/surefire-reports/com.shekhargulati.tadm.ch04.excercises.Problem4_6Test.txt b/java8/target/surefire-reports/com.shekhargulati.tadm.ch04.excercises.Problem4_6Test.txt new file mode 100644 index 00000000..e78f49c7 --- /dev/null +++ b/java8/target/surefire-reports/com.shekhargulati.tadm.ch04.excercises.Problem4_6Test.txt @@ -0,0 +1,4 @@ +------------------------------------------------------------------------------- +Test set: com.shekhargulati.tadm.ch04.excercises.Problem4_6Test +------------------------------------------------------------------------------- +Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0 sec diff --git a/java8/target/test-classes/book.txt b/java8/target/test-classes/book.txt new file mode 100644 index 00000000..f3b7cd2e --- /dev/null +++ b/java8/target/test-classes/book.txt @@ -0,0 +1,327 @@ +Dartmoor proper consists of that upland region of granite, rising to +nearly 2,000 feet above the sea, and actually shooting above that +height at a few points, which is the nursery of many of the rivers of +Devon. + +The Exe, indeed, has its source in Exmoor, and it disdains to receive +any affluents from Dartmoor; and the Torridge takes its rise hard by +the sea at Wellcombe, within a rifle-shot of the Bristol Channel, +nevertheless it makes a graceful sweep--tenders a salute--to Dartmoor, +and in return receives the liberal flow of the Okement. The Otter and +the Axe, being in the far east of the county, rise in the range of +hills that form the natural frontier between Devon and Somerset. + +But all the other considerable streams look back upon Dartmoor as their +mother. + +And what a mother! She sends them forth limpid and pure, full of +laughter and leap, of flash and brawl. She does not discharge them +laden with brown mud, as the Exe, nor turned like the waters of Egypt +to blood, as the Creedy. + +A prudent mother, she feeds them regularly, and with considerable +deliberation. Her vast bogs act as sponges, absorbing the winter rains, +and only leisurely and prudently does she administer the hoarded +supply, so that the rivers never run dry in the hottest and most +rainless summers. + +Of bogs there are two sorts, the great parental peat deposits that +cover the highland, where not too steep for them to lie, and the swamps +in the bottoms formed by the oozings from the hills that have been +arrested from instant discharge into the rivers by the growth of moss +and water-weeds, or are checked by belts of gravel and boulder. To see +the former, a visit should be made to Cranmere Pool, or to Cut Hill, +or Fox Tor Mire. To get into the latter a stroll of ten minutes up a +river-bank will suffice. + +The existence of the great parent bogs is due either to the fact that +beneath them lies the impervious granite, as a floor, somewhat concave, +or to the whole rolling upland being covered, as with a quilt, with +equally impervious china-clay, the fine deposit of feldspar washed from +the granite in the course of ages. + +In the depths of the moor the peat may be seen riven like floes of +ice, and the rifts are sometimes twelve to fourteen feet deep, cut +through black vegetable matter, the product of decay of plants through +countless generations. If the bottom be sufficiently denuded it is seen +to be white and smooth as a girl's shoulder--the kaolin that underlies +all. + +On the hillsides, and in the bottoms, quaking-bogs may be lighted +upon or tumbled into. To light upon them is easy enough, to get out +of one if tumbled into is a difficult matter. They are happily small, +and can be at once recognised by the vivid green pillow of moss that +overlies them. This pillow is sufficiently close in texture and buoyant +to support a man's weight, but it has a mischievous habit of thinning +around the edge, and if the water be stepped into where this fringe +is, it is quite possible for the inexperienced to go under, and be +enabled at his leisure to investigate the lower surface of the covering +_duvet_ of porous moss. Whether he will be able to give to the world +the benefit of his observations may be open to question. + +The thing to be done by anyone who gets into such a bog is to spread +his arms out--this will prevent his sinking--and if he cannot struggle +out, to wait, cooling his toes in bog water, till assistance comes. It +is a difficult matter to extricate horses when they flounder in, as +is not infrequently the case in hunting; every plunge sends the poor +beasts in deeper. + +One afternoon, in the year 1851, I was in the Walkham valley above +Merrivale Bridge digging into what at the time I fondly believed was a +tumulus, but which I subsequently discovered to be a mound thrown up +for the accommodation of rabbits, when a warren was contemplated on the +slope of Mis Tor. + +Towards evening I was startled to see a most extraordinary object +approach me--a man in a draggled, dingy, and disconsolate condition, +hardly able to crawl along. When he came up to me he burst into tears, +and it was some time before I could get his story from him. He was a +tailor of Plymouth, who had left his home to attend the funeral of a +cousin at Sampford Spiney or Walkhampton, I forget which. At that time +there was no railway between Tavistock and Launceston; communication +was by coach. + +When the tailor, on the coach, reached Roborough Down, "'Ere you +are!" said the driver. "You go along there, and you can't miss it!" +indicating a direction with his whip. + +So the tailor, in his glossy black suit, and with his box-hat set +jauntily on his head, descended from the coach, leaped into the +road, his umbrella, also black, under his arm, and with a composed +countenance started along the road that had been pointed out. + +Where and how he missed his way he could not explain, nor can I guess, +but instead of finding himself at the house of mourning, and partaking +there of cake and gin, and dropping a sympathetic tear, he got up on to +Dartmoor, and got--with considerable dexterity--away from all roads. + +He wandered on and on, becoming hungry, feeling the gloss go out of his +new black suit, and raws develop upon his top-hat as it got knocked +against rocks in some of his falls. + +Night set in, and, as Homer says, "all the paths were darkened"--but +where the tailor found himself there were no paths to become obscured. +He lay in a bog for some time, unable to extricate himself. He lost +his umbrella, and finally lost his hat. His imagination conjured up +frightful objects; if he did not lose his courage, it was because, as a +tailor, he had none to lose. + +He told me incredible tales of the large, glaring-eyed monsters that +had stared at him as he lay in the bog. They were probably sheep, but +as nine tailors fled when a snail put out its horns, no wonder that +this solitary member of the profession was scared at a sheep. + +The poor wretch had eaten nothing since the morning of the preceding +day. Happily I had half a Cornish pasty with me, and I gave it him. He +fell on it ravenously. + +Then I showed him the way to the little inn at Merrivale Bridge, and +advised him to hire a trap there and get back to Plymouth as quickly as +might be. + +"I solemnly swear to you, sir," said he, "nothing will ever induce me +to set foot on Dartmoor again. If I chance to see it from the Hoe, sir, +I'll avert my eyes. How can people think to come here for pleasure--for +pleasure, sir! But there, Chinamen eat birds'-nests. There are depraved +appetites among human beings, and only unwholesome-minded individuals +can love Dartmoor." + +There is a story told of one of the nastiest of mires on Dartmoor, that +of Aune Head. A mire, by the way, is a peculiarly watery bog, that lies +at the head of a river. It is its cradle, and a bog is distributed +indiscriminately anywhere. + +A mire cannot always be traversed in safety; much depends on the +season. After a dry summer it is possible to tread where it would be +death in winter or after a dropping summer. + +A man is said to have been making his way through Aune Mire when he +came on a top-hat reposing, brim downwards, on the sedge. He gave it a +kick, whereupon a voice called out from beneath, "What be you a-doin' +to my 'at?" The man replied, "Be there now a chap under'n?" "Ees, I +reckon," was the reply, "and a hoss under me likewise." + +There is a track through Aune Head Mire that can be taken with safety +by one who knows it. + +Fox Tor Mire once bore a very bad name. The only convict who really +got away from Princetown and was not recaptured was last seen taking a +bee-line for Fox Tor Mire. The grappling irons at the disposal of the +prison authorities were insufficient for the search of the whole marshy +tract. Since the mines were started at Whiteworks much has been done +to drain Fox Tor Mire, and to render it safe for grazing cattle on and +about it. + +There is a nasty little mire at the head of Redaven Lake, between +West Mill Tor and Yes Tor, and there is a choice collection of them, +inviting the unwary to their chill embraces, on Cater's Beam, about the +sources of the Plym and Blacklane Brook, the ugliest of all occupying +a pan and having no visible outlet. The Redlake mires are also disposed +to be nasty in a wet season, and should be avoided at all times. Anyone +having a fancy to study the mires and explore them for bog plants will +find an elegant selection around Wild Tor, to be reached by ascending +Taw Marsh and mounting Steeperton Tor, behind which he will find what +he desires. + + "On the high tableland," says Mr. William Collier, "above the + slopes, even higher than many tors, are the great bogs, the sources + of the rivers. The great northern bog is a vast tract of very + high land, nothing but bog and sedge, with ravines down which the + feeders of the rivers pour. Here may be found Cranmere Pool, which + is now no pool at all, but just a small piece of bare black bog. + Writers of Dartmoor guide-books have been pleased to make much of + this Cranmere Pool, greatly to the advantage of the living guides, + who take tourists there to stare at a small bit of black bog, and + leave their cards in a receptacle provided for them. The large bog + itself is of interest as the source of many rivers; but there is + absolutely no interest in Cranmere Pool, which is nothing but a + delusion and a snare for tourists. It was a small pool years ago, + where the rain water lodged; but at Okement Head hard by a fox was + run to ground, a terrier was put in, and by digging out the terrier + Cranmere Pool was tapped, and has never been a pool since. So much + for Cranmere Pool! + + "This great northern bog, divided into two sections by Fur Tor and + Fur Tor Cut, extends southwards to within a short distance of Great + Mis Tor, and is a vast receptacle of rain, which it safely holds + throughout the driest summer. Fur Tor Cut is a passage between the + north and south parts of this great bog, evidently cut artificially + for a pass for cattle and men on horseback from Tay Head, or Tavy + Head, to East Dart Head, forming a pass from west to east over + the very wildest part of Dartmoor. Anyone can walk over the bogs; + there is no danger or difficulty to a man on foot unless he gets + exhausted, as some have done. But horses, bullocks, and sheep + cannot cross them. A man on horseback must take care where he goes, + and this Fur Tor Cut is for his accommodation."[1] + +The Fur Tor Mire is not composed of black but of a horrible yellow +slime. There is no peat in it, and to cross it one must leap from one +tuft of coarse grass to another. The "mires" are formed in basins of +the granite, which were originally lakes or tarns, and into which +no streams fall bringing down detritus. They are slowly and surely +filling with vegetable matter, water-weeds that rot and sink, and +as this vegetable matter accumulates it contracts the area of the +water surface. In the rear of the long sedge grass or bogbean creeps +the heather, and a completely choked-up mire eventuates in a peat +bog. Granite has a tendency to form saucer-like depressions. In the +Bairischer Wald, the range dividing Bavaria from Bohemia, are a number +of picturesque tarns, that look as though they occupied the craters of +extinct volcanoes. This, however, is not the case; the rock is granite, +but in this case the lakes are so deep that they have not as yet been +filled with vegetable deposit. On the Cornish moors is Dosmare Pool. +This is a genuine instance of the lake in a granitic district. In +Redmoor, near Fox Tor, on the same moors, we have a similar saucer, +with a granitic lip, over which it discharges its superfluous water, +but it is already so much choked with vegetable growth as to have +become a mire. Ten thousand years hence it will be a great peat bog. + +I had an adventure in Redmoor, and came nearer looking into the world +beyond than has happened to me before or since. Although it occurred +on the Cornish moors, it might have chanced on Dartmoor, in one of its +mires, for the character of both is the same, and I was engaged in the +same autumn on both sets of moors. Having been dissatisfied with the +Ordnance maps of the Devon and Cornish moors, and desiring that certain +omissions should be corrected, I appealed to Sir Charles Wilson, of the +Survey, and he very readily sent me one of his staff, Mr. Thomas, to +go over the ground with me, and fill in the particulars that deserved +to be added. This was in 1891. The summer had been one of excessive +rain, and the bogs were swollen to bursting. Mr. Thomas and I had been +engaged, on November 5th, about Trewartha Marsh, and as the day closed +in we started for the inhabited land and our lodgings at "Five Janes." +But in the rapidly closing day we went out of our course, and when +nearly dark found ourselves completely astray, and worst of all in a +bog. We were forced to separate, and make our way as best we could, +leaping from one patch of rushes or moss to another. All at once I +went in over my waist, and felt myself being sucked down as though an +octopus had hold of me. I cried out, but Thomas could neither see me +nor assist me had he been able to approach. Providentially I had a long +bamboo, like an alpenstock, in my hand, and I laid this horizontally on +the surface and struggled to raise myself by it. After some time, and +with desperate effort, I got myself over the bamboo, and was finally +able to crawl away like a lizard on my face. My watch was stopped in +my waistcoat pocket, one of my gaiters torn off by the suction of the +bog, and I found that for a moment I had been submerged even over one +shoulder, as it was wet, and the moss clung to it. + +On another occasion I went with two of my children, on a day when +clouds were sweeping across the moor, over Langstone Moor. I was going +to the collection of hut circles opposite Greenaball, on the shoulder +of Mis Tor. Unhappily, we got into the bog at the head of Peter Tavy +Brook. This is by no means a dangerous morass, but after a rainy season +it is a nasty one to cross. + +Simultaneously down on us came the fog, dense as cotton wool. For +quite half an hour we were entangled in this absurdly insignificant +bog. In getting about in a mire, the only thing to be done is to leap +from one spot to another where there seems to be sufficient growth of +water-plants and moss to stay one up. In doing this one loses all idea +of direction, and we were, I have no doubt, forming figures of eight +in our endeavours to extricate ourselves. I knew that the morass was +inconsiderable in extent, and that by taking a straight line it would +be easy to get out of it, but in a fog it was not possible to take a +bee-line. Happily, for a moment the curtain of mist lifted, and I saw +on the horizon, standing up boldly, the stones of the great circle that +is planted on the crest. I at once shouted to the children to follow +me, and in two minutes we were on solid land. + +The Dartmoor bogs may be explored for rare plants and mosses. The +buckbean will be found and recognised by its three succulent sea-green +leaflets, and by its delicately beautiful white flower tinged with +pink, in June and July. I found it in 1861 in abundance in Iceland, +where it is called _Alptar colavr_, the swan's clapper. About Hamburg +it is known as the "flower of liberty," and grows only within the +domains of the old Hanseatic Republic. In Iceland it serves a double +purpose. Its thickly interwoven roots are cut and employed in square +pieces like turf or felt as a protection for the backs of horses that +are laden with packs. Moreover, in crossing a bog, the clever native +ponies always know that they can tread safely where they see the white +flower stand aloft. + +The golden asphodel is common, and remarkably lovely, with its shades +of yellow from the deep-tinted buds to the paler expanded flower. The +sundew is everywhere that water lodges; the sweet gale has foliage of +a pale yellowish green sprinkled over with dots, which are resinous +glands. The berries also are sprinkled with the same glands. The +plant has a powerful, but fresh and pleasant, odour, which insects +dislike. Country people were wont to use sprigs of it, like lavender, +to put with their linen, and to hang boughs above their beds. The +catkins yield a quantity of wax. The sweet gale was formerly much +more abundant, and was largely employed; it went by the name of the +Devonshire myrtle. When boiled, the wax rises to the surface of the +water. Tapers were made of it, and were so fragrant while burning, that +they were employed in sick-rooms. In Prussia, at one time, they were +constantly furnished for the royal household. + +The marsh helleborine, _Epipactis palustris_, may be gathered, and the +pyramidal orchis, and butterfly and frog orchises, occasionally. + +The furze--only out of bloom when Love is out of tune--keeps away from +the standing water. It is the furze which is the glory of the moor, +with its dazzling gold and its honey breath, fighting for existence +against the farmer who fires it every year, and envelops Dartmoor in +a cloud of smoke from March to June. Why should he do this instead of +employing the young shoots as fodder? + +I think that as Scotland has the thistle, Ireland the shamrock, and +Wales the leek as their emblems, we Western men of Devon and Cornwall +should adopt the furze. If we want a day, there is that of our apostle +S. Petrock, on June 4th. + +By the streams and rivers and on hedge-banks the yellow broom blazes, +yet it cannot rival in intensity of colour and in variety of tint the +magnificent furze or gorse. But the latter is not a pleasant plant to +walk amidst, owing to its prickles, and especial care must be observed +lest it affix one of these in the knee. The spike rapidly works inwards +and produces intense pain and lameness. The moment it is felt to be +there, the thing to be done is immediately to extract it with a knife. +From the blossoms of the furze the bees derive their aromatic honey, +which makes that of Dartmoor supreme. Yet beekeeping is a difficulty +there, owing to the gales, that sweep the busy insects away, so that +they fail to find their direction home. Only in sheltered combes can +they be kept. + +The much-relished Swiss honey is a manufactured product of glycerine +and pear-juice; but Dartmoor honey is the sublimated essence of +ambrosial sweetness in taste and savour, drawn from no other source +than the chalices of the golden furze, and compounded with no +adventitious matter. \ No newline at end of file From cf438df536457fae70f94df77be903eed57b94b8 Mon Sep 17 00:00:00 2001 From: Gerrit Grunwald Date: Fri, 30 Oct 2020 08:15:59 +0100 Subject: [PATCH 7/7] switched to gradle 6.3 in gradle wrapper --- java8/gradle/wrapper/gradle-wrapper.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/java8/gradle/wrapper/gradle-wrapper.properties b/java8/gradle/wrapper/gradle-wrapper.properties index 4963e201..2a74ed46 100644 --- a/java8/gradle/wrapper/gradle-wrapper.properties +++ b/java8/gradle/wrapper/gradle-wrapper.properties @@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-2.5-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-6.3-bin.zip