Commit c8ac94b7 authored by Stephane Nicoll's avatar Stephane Nicoll

Polish contribution

Closes gh-8490
parent a6f0da8c
/* /*
* 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 { ...@@ -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();
} }
......
...@@ -34,7 +34,6 @@ public class OutputCaptureTests { ...@@ -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 { ...@@ -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");
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment