コード例 #1
0
 @Before
 public void setUp() throws Exception {
   logger = new ConsoleAuditLogger();
   ace = mock(AuditableAccessControlEntry.class);
   console = System.out;
   System.setOut(new PrintStream(bytes));
 }
コード例 #2
0
 @After
 public void tearDown() throws Exception {
   System.setOut(console);
   bytes.reset();
 }