1 /* Copyright (c) 2000-2003, jMock.org. See bundled LICENSE.txt */ 2 package org.jmock; 3 4 import junit.framework.TestCase; 5 import org.jmock.expectation.AssertMo; 6 import org.jmock.expectation.Verifiable; 7 8 /*** 9 * Provides a level of indirection from TestCase so you can accomodate 10 * JUnit interface changes (like the change from 2.x to 3.1) 11 */ 12 public abstract class AbstractTestCase extends TestCase { 13 14 public void assertVerifyFails(Verifiable aVerifiable) { 15 AssertMo.assertVerifyFails(aVerifiable); 16 } 17 18 }

This page was automatically generated by Maven