Home
last modified time | relevance | path

Searched refs:ExceptionFactory (Results 1 – 3 of 3) sorted by relevance

/external/mockito/src/test/java/org/mockito/internal/junit/
DExceptionFactoryTest.java13 …lassLoaderWithoutJUnit = excludingClassLoader().withCodeSourceUrlOf(ExceptionFactory.class).withou…
29 … Class<?> exceptionFactory = classLoaderWithoutJUnit.loadClass(ExceptionFactory.class.getName()); in createArgumentsAreDifferentException_withoutJUnit()
39 …AssertionError e = ExceptionFactory.createArgumentsAreDifferentException("message", "wanted", "act… in createArgumentsAreDifferentException_withJUnit()
48 e = ExceptionFactory.createArgumentsAreDifferentException("message", "wanted", "actual"); in createArgumentsAreDifferentException_withJUnit2x()
51 e = ExceptionFactory.createArgumentsAreDifferentException("message", "wanted", "actual"); in createArgumentsAreDifferentException_withJUnit2x()
/external/mockito/src/main/java/org/mockito/internal/junit/
DExceptionFactory.java10 public class ExceptionFactory { class
14 private ExceptionFactory() { in ExceptionFactory() method in ExceptionFactory
/external/mockito/src/main/java/org/mockito/internal/exceptions/
DReporter.java14 import org.mockito.internal.junit.ExceptionFactory;
304 return ExceptionFactory.createArgumentsAreDifferentException(message, wanted, actual); in argumentsAreDifferent()