Browse Source

Polish contribution

Closes gh-8490
pull/8474/merge
Stephane Nicoll 9 years ago
parent
commit
c8ac94b75d
  1. 5
      spring-boot-test/src/main/java/org/springframework/boot/test/rule/OutputCapture.java
  2. 2
      spring-boot-test/src/test/java/org/springframework/boot/test/rule/OutputCaptureTests.java

5
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"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with 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; this.copy = null;
} }
/**
* Discard all currently accumulated output.
*/
public void reset() { public void reset() {
this.copy.reset(); this.copy.reset();
} }

2
spring-boot-test/src/test/java/org/springframework/boot/test/rule/OutputCaptureTests.java

@ -34,7 +34,6 @@ public class OutputCaptureTests {
@Test @Test
public void toStringShouldReturnAllCapturedOutput() throws Exception { public void toStringShouldReturnAllCapturedOutput() throws Exception {
System.out.println("Hello World"); System.out.println("Hello World");
assertThat(this.outputCapture.toString()).contains("Hello World"); assertThat(this.outputCapture.toString()).contains("Hello World");
} }
@ -43,7 +42,6 @@ public class OutputCaptureTests {
System.out.println("Hello"); System.out.println("Hello");
this.outputCapture.reset(); this.outputCapture.reset();
System.out.println("World"); System.out.println("World");
assertThat(this.outputCapture.toString()).doesNotContain("Hello") assertThat(this.outputCapture.toString()).doesNotContain("Hello")
.contains("World"); .contains("World");
} }

Loading…
Cancel
Save