So I looked up this question and tried it, but with no success.
My code should be testing if the method is correctly outputing the text onto the console by reading it back in using Streams
.
ByteArrayOutputStream outStream = new ByteArrayOutputStream();
PrintStream myStream = new PrintStream(outStream);
System.setOut(myStream);
o.doSomething(); //printing out Hi
System.out.flush();
System.setOut(savedOldStream);//setting it back to System.out
assertEquals(outStream.toString(),"Hi");
but everytime I run JUnit it fails.
I also tried: assertTrue(outStream.toString().equals("Hi"));
but this didn't work either.
This is the doSomething() method:
public void doSomething () {
System.out.println("Hi");
}
System.out
to test this. You can pass theByteArrayOutputStream
to thedoSomething()
method. – Hera