bajapro/online-compiler/java_files/pelajar_gmail_com/JUnitAngkaTest.java
2025-06-07 16:18:13 +07:00

34 lines
784 B
Java

package pelajar_gmail_com;
import static org.junit.Assert.assertEquals;
import java.io.ByteArrayOutputStream;
import java.io.PrintStream;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
public class JUnitAngkaTest {
private final ByteArrayOutputStream outputStream = new ByteArrayOutputStream();
private final PrintStream oPrintStream = System.out;
@Before
public void setUpStream() {
System.setOut(new PrintStream(outputStream));
}
@After
public void restoreStream() {
System.setOut(oPrintStream);
}
@Test
public void isAngka() {
pelajar_gmail_com.Angka.main(null);
String expectedOutput = "Selamat anda lulus!";
assertEquals("Output not the same", expectedOutput, outputStream.toString());
}
}