Rename internal OutputCapture classes

Rename the internal versions of OutputCapture to prevent accidental
import.

See gh-5492
This commit is contained in:
Phillip Webb
2016-03-25 11:16:41 -07:00
parent f96cd144dc
commit faba7a9514
15 changed files with 30 additions and 30 deletions

View File

@@ -30,7 +30,7 @@ import org.junit.runners.model.Statement;
*
* @author Phillip Webb
*/
public class OutputCapture implements TestRule {
class InternalOutputCapture implements TestRule {
private CaptureOutputStream captureOut;

View File

@@ -43,7 +43,7 @@ import static org.assertj.core.api.Assertions.assertThat;
public class PropertiesLauncherTests {
@Rule
public OutputCapture output = new OutputCapture();
public InternalOutputCapture output = new InternalOutputCapture();
@Before
public void setup() throws IOException {