List of usage examples for junit.framework Assert subclass-usage
From source file com.redhat.rhn.testing.ServletTestUtils.java
/** * ServletTestUtils * @version $Rev$ */ public class ServletTestUtils extends Assert {
From source file org.logicblaze.lingo.sca.ExampleServiceImpl.java
/** * @version $Revision$ */ public class ExampleServiceImpl extends Assert implements ExampleService { private static final transient Log log = LogFactory.getLog(ExampleServiceImpl.class);
From source file edu.unc.lib.dl.ui.util.StringFormatUtilTest.java
public class StringFormatUtilTest extends Assert { @SuppressWarnings("unused") private static final Logger LOG = LoggerFactory.getLogger(StringFormatUtilTest.class); @Test public void truncateText() throws IOException {
From source file org.logicblaze.lingo.sca.ScaServiceImpl.java
/** * @version $Revision$ */ public class ScaServiceImpl extends Assert implements ScaService { private static final transient Log log = LogFactory.getLog(ScaServiceImpl.class);
From source file org.logicblaze.lingo.example.ExampleServiceImpl.java
/** * @version $Revision: 148 $ */ public class ExampleServiceImpl extends Assert implements ExampleService { private static final transient Log log = LogFactory.getLog(ExampleServiceImpl.class);
From source file org.onebusaway.io.client.test.UriAssert.java
public class UriAssert extends Assert { /** * Check request for matching Uri. * * @param expectedUri The Uri the test should expect (query values are ignored, use
From source file simple.crawler.HttpClientUtilTestCase.java
/** * @author <a href="mailto:haithanh0809@gmail.com">Nguyen Thanh Hai</a> * @version $Id$ * */ public class HttpClientUtilTestCase extends Assert {
From source file com.yuwang.pinju.core.shop.ao.TestShopOpenAO.java
public class TestShopOpenAO extends Assert { protected final Log log = LogFactory.getLog(this.getClass().getName()); /** * ?? * @throws DaoException
From source file org.codehaus.mojo.macker.XmlComparer.java
/** * Uses XmlUnit to compare created Macker result XML reports against the expected ones. * @author <a href="http://www.code-cop.org/">Peter Kofler</a> */ public class XmlComparer extends Assert {
From source file org.apache.cactus.internal.server.ServerTestCaseCaller.java
/**
* Provide the ability to execute Cactus test case classes on the server side.
* It mimics the JUnit behavior by calling <code>setUp()</code>,
* <code>testXXX()</code> and <code>tearDown()</code> methods on the server
* side.
*