From d279e2998c352e2de04480fbe0879d7d44a99e54 Mon Sep 17 00:00:00 2001 From: Tim Jacomb Date: Wed, 7 Oct 2020 08:01:00 +0100 Subject: [PATCH 01/12] Add readme --- README.md | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..e69de29 From 6172286d584026610de75f038f025b719af9ad7a Mon Sep 17 00:00:00 2001 From: Tim Jacomb Date: Sat, 10 Oct 2020 08:54:45 +0100 Subject: [PATCH 02/12] Lots of passing --- src/test/java/com/github/App2Test.java | 87 ++++++++++++++++++++++++++ src/test/java/com/github/AppTest.java | 57 ++++++++++++++++- 2 files changed, 143 insertions(+), 1 deletion(-) create mode 100644 src/test/java/com/github/App2Test.java diff --git a/src/test/java/com/github/App2Test.java b/src/test/java/com/github/App2Test.java new file mode 100644 index 0000000..c4a31fc --- /dev/null +++ b/src/test/java/com/github/App2Test.java @@ -0,0 +1,87 @@ +package com.github; + +import java.io.IOException; +import java.nio.charset.StandardCharsets; +import java.nio.file.Files; +import java.nio.file.Path; +import java.nio.file.Paths; +import java.util.Collections; +import java.util.List; +import org.junit.Test; + +import static org.hamcrest.CoreMatchers.is; +import static org.junit.Assert.assertThat; + +/** + * Unit test for simple App. + */ +public class App2Test { + /** + * Rigorous Test :-) + */ + @Test + public void attachment() throws IOException { + Path file = Paths.get("hello.txt"); + List linesInMemory = Collections.singletonList("HEY HEY"); + Files.write(file, linesInMemory, StandardCharsets.UTF_8); + + System.out.println("[[ATTACHMENT|" + file.toAbsolutePath() + "]]"); + + assertThat(true, is(true)); + } + + @Test + public void attachment2() throws IOException { + Path file = Paths.get("hello.txt"); + List linesInMemory = Collections.singletonList("HEY HEY"); + Files.write(file, linesInMemory, StandardCharsets.UTF_8); + + System.out.println("[[ATTACHMENT|" + file.toAbsolutePath() + "]]"); + + assertThat(true, is(true)); + } + + @Test + public void attachment3() throws IOException { + Path file = Paths.get("hello.txt"); + List linesInMemory = Collections.singletonList("HEY HEY"); + Files.write(file, linesInMemory, StandardCharsets.UTF_8); + + System.out.println("[[ATTACHMENT|" + file.toAbsolutePath() + "]]"); + + assertThat(true, is(true)); + } + + @Test + public void attachment4() throws IOException { + Path file = Paths.get("hello.txt"); + List linesInMemory = Collections.singletonList("HEY HEY"); + Files.write(file, linesInMemory, StandardCharsets.UTF_8); + + System.out.println("[[ATTACHMENT|" + file.toAbsolutePath() + "]]"); + + assertThat(true, is(true)); + } + + @Test + public void attachment5() throws IOException { + Path file = Paths.get("hello.txt"); + List linesInMemory = Collections.singletonList("HEY HEY"); + Files.write(file, linesInMemory, StandardCharsets.UTF_8); + + System.out.println("[[ATTACHMENT|" + file.toAbsolutePath() + "]]"); + + assertThat(true, is(true)); + } + + @Test + public void attachment6() throws IOException { + Path file = Paths.get("hello.txt"); + List linesInMemory = Collections.singletonList("HEY HEY"); + Files.write(file, linesInMemory, StandardCharsets.UTF_8); + + System.out.println("[[ATTACHMENT|" + file.toAbsolutePath() + "]]"); + + assertThat(true, is(true)); + } +} diff --git a/src/test/java/com/github/AppTest.java b/src/test/java/com/github/AppTest.java index 0c0ad05..f7a3756 100644 --- a/src/test/java/com/github/AppTest.java +++ b/src/test/java/com/github/AppTest.java @@ -29,6 +29,61 @@ public void attachment() throws IOException { System.out.println("[[ATTACHMENT|" + file.toAbsolutePath() + "]]"); - assertThat(false, is(true)); + assertThat(true, is(true)); + } + + @Test + public void attachment2() throws IOException { + Path file = Paths.get("hello.txt"); + List linesInMemory = Collections.singletonList("HEY HEY"); + Files.write(file, linesInMemory, StandardCharsets.UTF_8); + + System.out.println("[[ATTACHMENT|" + file.toAbsolutePath() + "]]"); + + assertThat(true, is(true)); + } + + @Test + public void attachment3() throws IOException { + Path file = Paths.get("hello.txt"); + List linesInMemory = Collections.singletonList("HEY HEY"); + Files.write(file, linesInMemory, StandardCharsets.UTF_8); + + System.out.println("[[ATTACHMENT|" + file.toAbsolutePath() + "]]"); + + assertThat(true, is(true)); + } + + @Test + public void attachment4() throws IOException { + Path file = Paths.get("hello.txt"); + List linesInMemory = Collections.singletonList("HEY HEY"); + Files.write(file, linesInMemory, StandardCharsets.UTF_8); + + System.out.println("[[ATTACHMENT|" + file.toAbsolutePath() + "]]"); + + assertThat(true, is(true)); + } + + @Test + public void attachment5() throws IOException { + Path file = Paths.get("hello.txt"); + List linesInMemory = Collections.singletonList("HEY HEY"); + Files.write(file, linesInMemory, StandardCharsets.UTF_8); + + System.out.println("[[ATTACHMENT|" + file.toAbsolutePath() + "]]"); + + assertThat(true, is(true)); + } + + @Test + public void attachment6() throws IOException { + Path file = Paths.get("hello.txt"); + List linesInMemory = Collections.singletonList("HEY HEY"); + Files.write(file, linesInMemory, StandardCharsets.UTF_8); + + System.out.println("[[ATTACHMENT|" + file.toAbsolutePath() + "]]"); + + assertThat(true, is(true)); } } From eb4bd867581ff6075f701a402d3cb3a8a047c498 Mon Sep 17 00:00:00 2001 From: Tim Jacomb Date: Sat, 10 Oct 2020 08:55:16 +0100 Subject: [PATCH 03/12] Some ignored --- src/test/java/com/github/App2Test.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/test/java/com/github/App2Test.java b/src/test/java/com/github/App2Test.java index c4a31fc..e3c1b51 100644 --- a/src/test/java/com/github/App2Test.java +++ b/src/test/java/com/github/App2Test.java @@ -7,6 +7,7 @@ import java.nio.file.Paths; import java.util.Collections; import java.util.List; +import org.junit.Ignore; import org.junit.Test; import static org.hamcrest.CoreMatchers.is; @@ -31,6 +32,7 @@ public void attachment() throws IOException { } @Test + @Ignore public void attachment2() throws IOException { Path file = Paths.get("hello.txt"); List linesInMemory = Collections.singletonList("HEY HEY"); @@ -75,6 +77,7 @@ public void attachment5() throws IOException { } @Test + @Ignore public void attachment6() throws IOException { Path file = Paths.get("hello.txt"); List linesInMemory = Collections.singletonList("HEY HEY"); From 96ed77ef717d8c369390b56c12d5ba00ae2c47d1 Mon Sep 17 00:00:00 2001 From: Tim Jacomb Date: Sat, 10 Oct 2020 08:55:55 +0100 Subject: [PATCH 04/12] Everything --- src/test/java/com/github/App2Test.java | 4 ++-- src/test/java/com/github/AppTest.java | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/test/java/com/github/App2Test.java b/src/test/java/com/github/App2Test.java index e3c1b51..bf9a1ec 100644 --- a/src/test/java/com/github/App2Test.java +++ b/src/test/java/com/github/App2Test.java @@ -40,7 +40,7 @@ public void attachment2() throws IOException { System.out.println("[[ATTACHMENT|" + file.toAbsolutePath() + "]]"); - assertThat(true, is(true)); + assertThat(false, is(true)); } @Test @@ -73,7 +73,7 @@ public void attachment5() throws IOException { System.out.println("[[ATTACHMENT|" + file.toAbsolutePath() + "]]"); - assertThat(true, is(true)); + assertThat(false, is(true)); } @Test diff --git a/src/test/java/com/github/AppTest.java b/src/test/java/com/github/AppTest.java index f7a3756..68abd04 100644 --- a/src/test/java/com/github/AppTest.java +++ b/src/test/java/com/github/AppTest.java @@ -62,7 +62,7 @@ public void attachment4() throws IOException { System.out.println("[[ATTACHMENT|" + file.toAbsolutePath() + "]]"); - assertThat(true, is(true)); + assertThat(false, is(true)); } @Test From 0644108a830e5b24d746029d80a7e2fc70c908ba Mon Sep 17 00:00:00 2001 From: Tim Jacomb Date: Sat, 10 Oct 2020 08:57:17 +0100 Subject: [PATCH 05/12] Just one failing --- src/test/java/com/github/App2Test.java | 2 +- src/test/java/com/github/AppTest.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/test/java/com/github/App2Test.java b/src/test/java/com/github/App2Test.java index bf9a1ec..e2efec4 100644 --- a/src/test/java/com/github/App2Test.java +++ b/src/test/java/com/github/App2Test.java @@ -73,7 +73,7 @@ public void attachment5() throws IOException { System.out.println("[[ATTACHMENT|" + file.toAbsolutePath() + "]]"); - assertThat(false, is(true)); + assertThat(true, is(true)); } @Test diff --git a/src/test/java/com/github/AppTest.java b/src/test/java/com/github/AppTest.java index 68abd04..f7a3756 100644 --- a/src/test/java/com/github/AppTest.java +++ b/src/test/java/com/github/AppTest.java @@ -62,7 +62,7 @@ public void attachment4() throws IOException { System.out.println("[[ATTACHMENT|" + file.toAbsolutePath() + "]]"); - assertThat(false, is(true)); + assertThat(true, is(true)); } @Test From 5b2b044c2616f9a5b68932add8fdeba28b503515 Mon Sep 17 00:00:00 2001 From: Tim Jacomb Date: Sat, 10 Oct 2020 09:13:11 +0100 Subject: [PATCH 06/12] facepalm --- src/test/java/com/github/App2Test.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/java/com/github/App2Test.java b/src/test/java/com/github/App2Test.java index e2efec4..b54cce3 100644 --- a/src/test/java/com/github/App2Test.java +++ b/src/test/java/com/github/App2Test.java @@ -51,7 +51,7 @@ public void attachment3() throws IOException { System.out.println("[[ATTACHMENT|" + file.toAbsolutePath() + "]]"); - assertThat(true, is(true)); + assertThat(false, is(true)); } @Test From aaca7c9f3e0d1f02193931e04b5ce61f4623dd16 Mon Sep 17 00:00:00 2001 From: Tim Jacomb Date: Sat, 10 Oct 2020 11:41:43 +0100 Subject: [PATCH 07/12] More than 10 failing --- src/test/java/com/github/App3Test.java | 90 ++++++++++++++++++++++++++ src/test/java/com/github/App4Test.java | 90 ++++++++++++++++++++++++++ src/test/java/com/github/App5Test.java | 90 ++++++++++++++++++++++++++ 3 files changed, 270 insertions(+) create mode 100644 src/test/java/com/github/App3Test.java create mode 100644 src/test/java/com/github/App4Test.java create mode 100644 src/test/java/com/github/App5Test.java diff --git a/src/test/java/com/github/App3Test.java b/src/test/java/com/github/App3Test.java new file mode 100644 index 0000000..9f354d8 --- /dev/null +++ b/src/test/java/com/github/App3Test.java @@ -0,0 +1,90 @@ +package com.github; + +import java.io.IOException; +import java.nio.charset.StandardCharsets; +import java.nio.file.Files; +import java.nio.file.Path; +import java.nio.file.Paths; +import java.util.Collections; +import java.util.List; +import org.junit.Ignore; +import org.junit.Test; + +import static org.hamcrest.CoreMatchers.is; +import static org.junit.Assert.assertThat; + +/** + * Unit test for simple App. + */ +public class App3Test { + /** + * Rigorous Test :-) + */ + @Test + public void attachment() throws IOException { + Path file = Paths.get("hello.txt"); + List linesInMemory = Collections.singletonList("HEY HEY"); + Files.write(file, linesInMemory, StandardCharsets.UTF_8); + + System.out.println("[[ATTACHMENT|" + file.toAbsolutePath() + "]]"); + + assertThat(false, is(true)); + } + + @Test + @Ignore + public void attachment2() throws IOException { + Path file = Paths.get("hello.txt"); + List linesInMemory = Collections.singletonList("HEY HEY"); + Files.write(file, linesInMemory, StandardCharsets.UTF_8); + + System.out.println("[[ATTACHMENT|" + file.toAbsolutePath() + "]]"); + + assertThat(false, is(true)); + } + + @Test + public void attachment3() throws IOException { + Path file = Paths.get("hello.txt"); + List linesInMemory = Collections.singletonList("HEY HEY"); + Files.write(file, linesInMemory, StandardCharsets.UTF_8); + + System.out.println("[[ATTACHMENT|" + file.toAbsolutePath() + "]]"); + + assertThat(false, is(true)); + } + + @Test + public void attachment4() throws IOException { + Path file = Paths.get("hello.txt"); + List linesInMemory = Collections.singletonList("HEY HEY"); + Files.write(file, linesInMemory, StandardCharsets.UTF_8); + + System.out.println("[[ATTACHMENT|" + file.toAbsolutePath() + "]]"); + + assertThat(false, is(true)); + } + + @Test + public void attachment5() throws IOException { + Path file = Paths.get("hello.txt"); + List linesInMemory = Collections.singletonList("HEY HEY"); + Files.write(file, linesInMemory, StandardCharsets.UTF_8); + + System.out.println("[[ATTACHMENT|" + file.toAbsolutePath() + "]]"); + + assertThat(false, is(true)); + } + + @Test + @Ignore + public void attachment6() throws IOException { + Path file = Paths.get("hello.txt"); + List linesInMemory = Collections.singletonList("HEY HEY"); + Files.write(file, linesInMemory, StandardCharsets.UTF_8); + + System.out.println("[[ATTACHMENT|" + file.toAbsolutePath() + "]]"); + + assertThat(false, is(true)); + } +} diff --git a/src/test/java/com/github/App4Test.java b/src/test/java/com/github/App4Test.java new file mode 100644 index 0000000..47ce09c --- /dev/null +++ b/src/test/java/com/github/App4Test.java @@ -0,0 +1,90 @@ +package com.github; + +import java.io.IOException; +import java.nio.charset.StandardCharsets; +import java.nio.file.Files; +import java.nio.file.Path; +import java.nio.file.Paths; +import java.util.Collections; +import java.util.List; +import org.junit.Ignore; +import org.junit.Test; + +import static org.hamcrest.CoreMatchers.is; +import static org.junit.Assert.assertThat; + +/** + * Unit test for simple App. + */ +public class App4Test { + /** + * Rigorous Test :-) + */ + @Test + public void attachment() throws IOException { + Path file = Paths.get("hello.txt"); + List linesInMemory = Collections.singletonList("HEY HEY"); + Files.write(file, linesInMemory, StandardCharsets.UTF_8); + + System.out.println("[[ATTACHMENT|" + file.toAbsolutePath() + "]]"); + + assertThat(false, is(true)); + } + + @Test + @Ignore + public void attachment2() throws IOException { + Path file = Paths.get("hello.txt"); + List linesInMemory = Collections.singletonList("HEY HEY"); + Files.write(file, linesInMemory, StandardCharsets.UTF_8); + + System.out.println("[[ATTACHMENT|" + file.toAbsolutePath() + "]]"); + + assertThat(false, is(true)); + } + + @Test + public void attachment3() throws IOException { + Path file = Paths.get("hello.txt"); + List linesInMemory = Collections.singletonList("HEY HEY"); + Files.write(file, linesInMemory, StandardCharsets.UTF_8); + + System.out.println("[[ATTACHMENT|" + file.toAbsolutePath() + "]]"); + + assertThat(false, is(true)); + } + + @Test + public void attachment4() throws IOException { + Path file = Paths.get("hello.txt"); + List linesInMemory = Collections.singletonList("HEY HEY"); + Files.write(file, linesInMemory, StandardCharsets.UTF_8); + + System.out.println("[[ATTACHMENT|" + file.toAbsolutePath() + "]]"); + + assertThat(false, is(true)); + } + + @Test + public void attachment5() throws IOException { + Path file = Paths.get("hello.txt"); + List linesInMemory = Collections.singletonList("HEY HEY"); + Files.write(file, linesInMemory, StandardCharsets.UTF_8); + + System.out.println("[[ATTACHMENT|" + file.toAbsolutePath() + "]]"); + + assertThat(false, is(true)); + } + + @Test + @Ignore + public void attachment6() throws IOException { + Path file = Paths.get("hello.txt"); + List linesInMemory = Collections.singletonList("HEY HEY"); + Files.write(file, linesInMemory, StandardCharsets.UTF_8); + + System.out.println("[[ATTACHMENT|" + file.toAbsolutePath() + "]]"); + + assertThat(false, is(true)); + } +} diff --git a/src/test/java/com/github/App5Test.java b/src/test/java/com/github/App5Test.java new file mode 100644 index 0000000..6af850b --- /dev/null +++ b/src/test/java/com/github/App5Test.java @@ -0,0 +1,90 @@ +package com.github; + +import java.io.IOException; +import java.nio.charset.StandardCharsets; +import java.nio.file.Files; +import java.nio.file.Path; +import java.nio.file.Paths; +import java.util.Collections; +import java.util.List; +import org.junit.Ignore; +import org.junit.Test; + +import static org.hamcrest.CoreMatchers.is; +import static org.junit.Assert.assertThat; + +/** + * Unit test for simple App. + */ +public class App5Test { + /** + * Rigorous Test :-) + */ + @Test + public void attachment() throws IOException { + Path file = Paths.get("hello.txt"); + List linesInMemory = Collections.singletonList("HEY HEY"); + Files.write(file, linesInMemory, StandardCharsets.UTF_8); + + System.out.println("[[ATTACHMENT|" + file.toAbsolutePath() + "]]"); + + assertThat(false, is(true)); + } + + @Test + @Ignore + public void attachment2() throws IOException { + Path file = Paths.get("hello.txt"); + List linesInMemory = Collections.singletonList("HEY HEY"); + Files.write(file, linesInMemory, StandardCharsets.UTF_8); + + System.out.println("[[ATTACHMENT|" + file.toAbsolutePath() + "]]"); + + assertThat(false, is(true)); + } + + @Test + public void attachment3() throws IOException { + Path file = Paths.get("hello.txt"); + List linesInMemory = Collections.singletonList("HEY HEY"); + Files.write(file, linesInMemory, StandardCharsets.UTF_8); + + System.out.println("[[ATTACHMENT|" + file.toAbsolutePath() + "]]"); + + assertThat(false, is(true)); + } + + @Test + public void attachment4() throws IOException { + Path file = Paths.get("hello.txt"); + List linesInMemory = Collections.singletonList("HEY HEY"); + Files.write(file, linesInMemory, StandardCharsets.UTF_8); + + System.out.println("[[ATTACHMENT|" + file.toAbsolutePath() + "]]"); + + assertThat(false, is(true)); + } + + @Test + public void attachment5() throws IOException { + Path file = Paths.get("hello.txt"); + List linesInMemory = Collections.singletonList("HEY HEY"); + Files.write(file, linesInMemory, StandardCharsets.UTF_8); + + System.out.println("[[ATTACHMENT|" + file.toAbsolutePath() + "]]"); + + assertThat(false, is(true)); + } + + @Test + @Ignore + public void attachment6() throws IOException { + Path file = Paths.get("hello.txt"); + List linesInMemory = Collections.singletonList("HEY HEY"); + Files.write(file, linesInMemory, StandardCharsets.UTF_8); + + System.out.println("[[ATTACHMENT|" + file.toAbsolutePath() + "]]"); + + assertThat(false, is(true)); + } +} From bc1fc1aa2aa3cf8da43ffc1a08ec789fffee580d Mon Sep 17 00:00:00 2001 From: Tim Jacomb Date: Sun, 25 Oct 2020 07:49:00 +0000 Subject: [PATCH 08/12] Lots of std out --- pom.xml | 4 ++-- src/test/java/com/github/App2Test.java | 10 +++++++++- src/test/java/com/github/App3Test.java | 9 ++++++--- src/test/java/com/github/App4Test.java | 3 +++ 4 files changed, 20 insertions(+), 6 deletions(-) diff --git a/pom.xml b/pom.xml index 0950adb..27a1eb1 100644 --- a/pom.xml +++ b/pom.xml @@ -14,8 +14,8 @@ UTF-8 - 1.7 - 1.7 + 1.8 + 1.8 diff --git a/src/test/java/com/github/App2Test.java b/src/test/java/com/github/App2Test.java index b54cce3..0c2a415 100644 --- a/src/test/java/com/github/App2Test.java +++ b/src/test/java/com/github/App2Test.java @@ -49,11 +49,19 @@ public void attachment3() throws IOException { List linesInMemory = Collections.singletonList("HEY HEY"); Files.write(file, linesInMemory, StandardCharsets.UTF_8); - System.out.println("[[ATTACHMENT|" + file.toAbsolutePath() + "]]"); + printLotsToStdOut(); assertThat(false, is(true)); } + public static void printLotsToStdOut() { + String s = "a"; + int n = 100; + for (int i = 0; i < 100; i++) { + System.out.println(String.join("", Collections.nCopies(n, s))); + } + } + @Test public void attachment4() throws IOException { Path file = Paths.get("hello.txt"); diff --git a/src/test/java/com/github/App3Test.java b/src/test/java/com/github/App3Test.java index 9f354d8..5cc625d 100644 --- a/src/test/java/com/github/App3Test.java +++ b/src/test/java/com/github/App3Test.java @@ -10,6 +10,7 @@ import org.junit.Ignore; import org.junit.Test; +import static com.github.App2Test.printLotsToStdOut; import static org.hamcrest.CoreMatchers.is; import static org.junit.Assert.assertThat; @@ -26,7 +27,7 @@ public void attachment() throws IOException { List linesInMemory = Collections.singletonList("HEY HEY"); Files.write(file, linesInMemory, StandardCharsets.UTF_8); - System.out.println("[[ATTACHMENT|" + file.toAbsolutePath() + "]]"); + printLotsToStdOut(); assertThat(false, is(true)); } @@ -51,6 +52,8 @@ public void attachment3() throws IOException { System.out.println("[[ATTACHMENT|" + file.toAbsolutePath() + "]]"); + printLotsToStdOut(); + assertThat(false, is(true)); } @@ -60,7 +63,7 @@ public void attachment4() throws IOException { List linesInMemory = Collections.singletonList("HEY HEY"); Files.write(file, linesInMemory, StandardCharsets.UTF_8); - System.out.println("[[ATTACHMENT|" + file.toAbsolutePath() + "]]"); + printLotsToStdOut(); assertThat(false, is(true)); } @@ -71,7 +74,7 @@ public void attachment5() throws IOException { List linesInMemory = Collections.singletonList("HEY HEY"); Files.write(file, linesInMemory, StandardCharsets.UTF_8); - System.out.println("[[ATTACHMENT|" + file.toAbsolutePath() + "]]"); + printLotsToStdOut(); assertThat(false, is(true)); } diff --git a/src/test/java/com/github/App4Test.java b/src/test/java/com/github/App4Test.java index 47ce09c..ac96b91 100644 --- a/src/test/java/com/github/App4Test.java +++ b/src/test/java/com/github/App4Test.java @@ -10,6 +10,7 @@ import org.junit.Ignore; import org.junit.Test; +import static com.github.App2Test.printLotsToStdOut; import static org.hamcrest.CoreMatchers.is; import static org.junit.Assert.assertThat; @@ -27,6 +28,8 @@ public void attachment() throws IOException { Files.write(file, linesInMemory, StandardCharsets.UTF_8); System.out.println("[[ATTACHMENT|" + file.toAbsolutePath() + "]]"); + + printLotsToStdOut(); assertThat(false, is(true)); } From e8d2104d899a966d5e331bc51866a6396e921f44 Mon Sep 17 00:00:00 2001 From: Tim Jacomb Date: Sun, 25 Oct 2020 08:34:20 +0000 Subject: [PATCH 09/12] Compilation failure --- src/test/java/com/github/App4Test.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/java/com/github/App4Test.java b/src/test/java/com/github/App4Test.java index ac96b91..e538e65 100644 --- a/src/test/java/com/github/App4Test.java +++ b/src/test/java/com/github/App4Test.java @@ -54,7 +54,7 @@ public void attachment3() throws IOException { System.out.println("[[ATTACHMENT|" + file.toAbsolutePath() + "]]"); - assertThat(false, is(true)); + assertssThat(false, is(true)); } @Test From b438cc8ff4005d214221edeaf94474572d44c165 Mon Sep 17 00:00:00 2001 From: Tim Jacomb <21194782+timja@users.noreply.github.com> Date: Sun, 31 Jan 2021 14:07:32 +0000 Subject: [PATCH 10/12] Update Jenkinsfile --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index b675fd5..272d0cf 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -5,7 +5,7 @@ pipeline { stage('Build') { steps { // Run Maven on a Unix agent. - sh "mvn -Dmaven.test.failure.ignore=true clean verify" + sh "mvn -B -Dmaven.test.failure.ignore=true clean verify" } post { From d0b9511afed8b505161925c04ff5fbf82e3d66eb Mon Sep 17 00:00:00 2001 From: Tim Jacomb <21194782+timja@users.noreply.github.com> Date: Sun, 31 Jan 2021 15:17:47 +0000 Subject: [PATCH 11/12] Update Jenkinsfile --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 272d0cf..b675fd5 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -5,7 +5,7 @@ pipeline { stage('Build') { steps { // Run Maven on a Unix agent. - sh "mvn -B -Dmaven.test.failure.ignore=true clean verify" + sh "mvn -Dmaven.test.failure.ignore=true clean verify" } post { From 06a9237e789a5fe0b1ea2475cb996a4b901b7b31 Mon Sep 17 00:00:00 2001 From: Tim Jacomb <21194782+timja@users.noreply.github.com> Date: Thu, 9 Jan 2025 12:11:13 +0000 Subject: [PATCH 12/12] Discard changes to pom.xml --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 27a1eb1..0950adb 100644 --- a/pom.xml +++ b/pom.xml @@ -14,8 +14,8 @@ UTF-8 - 1.8 - 1.8 + 1.7 + 1.7