Package fitnesse.testsystems

Examples of fitnesse.testsystems.CompositeExecutionLog


    }
   
    @Test
    public void testSetExecutionLogAndTrackingId() throws Exception {
      String stopResponderId = "stopResponderId";
      CompositeExecutionLog log = new CompositeExecutionLog(new WikiPageDummy());
     
      delegatingListener.setExecutionLogAndTrackingId(stopResponderId, log);
     
      for(int i = 0 ; i < DELEGATE_COUNT ; i++) {
        verify(delegates[i], times(1)).setExecutionLogAndTrackingId(stopResponderId, log);
View Full Code Here

TOP

Related Classes of fitnesse.testsystems.CompositeExecutionLog

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.