What is the console output of running the following JUnit 4…

What is the console output of running the following JUnit 4 test?   public class HelloWorldTest {        @Before    public void before() {        System.out.println(“before”);    }        @Test    public void test() {                int actual = null;                System.out.println(“asserting…”);        assertArrayEquals(expected, actual);        System.out.println(“done asserting”);    }     @After    public void after() {        System.out.println(“after”);    }    }