Package org.araneaframework.tests.mock

Examples of org.araneaframework.tests.mock.MockConfiguration


  public void testConverterNotFound() throws Exception {   
   
    boolean exceptionThrown = false;
   
    try {
      ConverterFactory.getInstance(new MockConfiguration()).findConverter("unexistingUniqueRandomType1", "unexistingUniqueRandomType2");
    }
    catch (ConverterNotFoundException e) {
      log.debug(e.getMessage());
      exceptionThrown = true;
    }
View Full Code Here

TOP

Related Classes of org.araneaframework.tests.mock.MockConfiguration

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.