From c8ac94b75d99772c95b9cc3db42324d76f1c51e8 Mon Sep 17 00:00:00 2001 From: Stephane Nicoll Date: Fri, 10 Mar 2017 09:51:35 +0100 Subject: [PATCH] Polish contribution Closes gh-8490 --- .../org/springframework/boot/test/rule/OutputCapture.java | 5 ++++- .../springframework/boot/test/rule/OutputCaptureTests.java | 2 -- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/spring-boot-test/src/main/java/org/springframework/boot/test/rule/OutputCapture.java b/spring-boot-test/src/main/java/org/springframework/boot/test/rule/OutputCapture.java index 527c5ca4bb2..9f3a56fce36 100644 --- a/spring-boot-test/src/main/java/org/springframework/boot/test/rule/OutputCapture.java +++ b/spring-boot-test/src/main/java/org/springframework/boot/test/rule/OutputCapture.java @@ -1,5 +1,5 @@ /* - * Copyright 2012-2016 the original author or authors. + * Copyright 2012-2017 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -91,6 +91,9 @@ public class OutputCapture implements TestRule { this.copy = null; } + /** + * Discard all currently accumulated output. + */ public void reset() { this.copy.reset(); } diff --git a/spring-boot-test/src/test/java/org/springframework/boot/test/rule/OutputCaptureTests.java b/spring-boot-test/src/test/java/org/springframework/boot/test/rule/OutputCaptureTests.java index 7ced4cd1f39..bc25e722bfc 100644 --- a/spring-boot-test/src/test/java/org/springframework/boot/test/rule/OutputCaptureTests.java +++ b/spring-boot-test/src/test/java/org/springframework/boot/test/rule/OutputCaptureTests.java @@ -34,7 +34,6 @@ public class OutputCaptureTests { @Test public void toStringShouldReturnAllCapturedOutput() throws Exception { System.out.println("Hello World"); - assertThat(this.outputCapture.toString()).contains("Hello World"); } @@ -43,7 +42,6 @@ public class OutputCaptureTests { System.out.println("Hello"); this.outputCapture.reset(); System.out.println("World"); - assertThat(this.outputCapture.toString()).doesNotContain("Hello") .contains("World"); }