Package fitnesse.testsystems.slim.results

Examples of fitnesse.testsystems.slim.results.ExceptionResult


    }
   
    @Test
    public void testTestExceptionOccurred() throws Exception {
      Assertion assertion = assertion();
      ExceptionResult exceptionResult = new ExceptionResult("resultKey", "exceptionValue");
     
      delegatingListener.testExceptionOccurred(assertion, exceptionResult);
     
      for(int i = 0 ; i < DELEGATE_COUNT ; i++) {
        verify(delegates[i], times(1)).testExceptionOccurred(assertion, exceptionResult);
View Full Code Here

TOP

Related Classes of fitnesse.testsystems.slim.results.ExceptionResult

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.