From 42bec2d343203c3fb10ffe1d2eb050b6ca52c7a8 Mon Sep 17 00:00:00 2001 From: Wes Higbee Date: Thu, 28 Jul 2016 00:07:40 -0500 Subject: [PATCH 1/6] Empty commit to show off issue tracker integration, reference issue #1 From 10921af8804c77c92abfc41007a35ccf998194d9 Mon Sep 17 00:00:00 2001 From: Wes Higbee Date: Thu, 28 Jul 2016 00:20:52 -0500 Subject: [PATCH 2/6] #3 update to java 1.8 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index afcc6db8d..5c0c892ca 100644 --- a/pom.xml +++ b/pom.xml @@ -12,7 +12,7 @@ - 1.7 + 1.8 UTF-8 UTF-8 From dc26f05ad9f1434c18a8fe7e60207d5b7a44a606 Mon Sep 17 00:00:00 2001 From: Wes Higbee Date: Thu, 28 Jul 2016 00:38:24 -0500 Subject: [PATCH 3/6] Add a flaky test --- .../samples/petclinic/model/ValidatorTests.java | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/test/java/org/springframework/samples/petclinic/model/ValidatorTests.java b/src/test/java/org/springframework/samples/petclinic/model/ValidatorTests.java index b836d0cc2..a0ad30ede 100644 --- a/src/test/java/org/springframework/samples/petclinic/model/ValidatorTests.java +++ b/src/test/java/org/springframework/samples/petclinic/model/ValidatorTests.java @@ -4,6 +4,7 @@ import static org.assertj.core.api.Assertions.assertThat; import java.util.Locale; import java.util.Set; +import java.util.concurrent.ThreadLocalRandom; import javax.validation.ConstraintViolation; import javax.validation.Validator; @@ -12,6 +13,7 @@ import org.junit.Test; import org.springframework.context.i18n.LocaleContextHolder; import org.springframework.validation.beanvalidation.LocalValidatorFactoryBean; + /** * @author Michael Isvy * Simple test to make sure that Bean Validation is working @@ -42,4 +44,10 @@ public class ValidatorTests { assertThat(violation.getMessage()).isEqualTo("may not be empty"); } + @Test + public void iAmFlaky() { + Boolean randomResult = ThreadLocalRandom.current().nextBoolean(); + assertThat(randomResult).isTrue(); + } + } From 7924eebc3e76bc474cc4953e2d6f8c0ddffc7eaa Mon Sep 17 00:00:00 2001 From: Wes Higbee Date: Thu, 28 Jul 2016 01:22:26 -0500 Subject: [PATCH 4/6] An empty commit with several issue references #3 #4 #1 From 7fcded3ba09f933a946dcb2bd946d79f7dfdd1d5 Mon Sep 17 00:00:00 2001 From: Wes Higbee Date: Thu, 28 Jul 2016 02:35:14 -0500 Subject: [PATCH 5/6] empty commit on feature branch From 43be122a82d1fbf6d89c4c8ffcc7bf6c5714f9a6 Mon Sep 17 00:00:00 2001 From: Wes Higbee Date: Thu, 28 Jul 2016 02:44:48 -0500 Subject: [PATCH 6/6] empty commit on feature branch