Ejemplo n.º 1
0
 @Override
 public void testOutputChunk(String output) throws IOException {
   if (currentTestPage == null) {
     currentTestPage = processingQueue.removeFirst();
     testSystemListener.testStarted(currentTestPage);
   }
   testSystemListener.testOutputChunk(output);
 }
Ejemplo n.º 2
0
 @Override
 public void testComplete(TestSummary testSummary) throws IOException {
   assert currentTestPage != null;
   testSystemListener.testComplete(currentTestPage, testSummary);
   currentTestPage = null;
 }
Ejemplo n.º 3
0
 private void testSystemStopped(Throwable throwable) {
   testSystemListener.testSystemStopped(this, throwable);
 }
Ejemplo n.º 4
0
 @Override
 public void addTestSystemListener(TestSystemListener listener) {
   testSystemListener.addTestSystemListener(listener);
 }
Ejemplo n.º 5
0
 private void testSystemStarted(TestSystem testSystem) {
   testSystemListener.testSystemStarted(testSystem);
 }
Ejemplo n.º 6
0
 private void testSystemStopped(ExecutionLog executionLog, Throwable throwable) {
   testSystemListener.testSystemStopped(this, executionLog, throwable);
 }
Ejemplo n.º 7
0
 private void testSystemStarted(TestSystem testSystem, String testSystemName, String testRunner) {
   testSystemListener.testSystemStarted(testSystem);
 }
Ejemplo n.º 8
0
 @Override
 public void testComplete(TestSummary testSummary) throws IOException {
   testSystemListener.testComplete(testSummary);
 }
Ejemplo n.º 9
0
 @Override
 public void testOutputChunk(String output) throws IOException {
   testSystemListener.testOutputChunk(output);
 }