2014-03-03 09:44:07 +01:00
|
|
|
package com.rarchives.ripme.tst;
|
2014-02-25 10:28:22 +01:00
|
|
|
|
|
|
|
import junit.framework.Test;
|
|
|
|
import junit.framework.TestCase;
|
|
|
|
import junit.framework.TestSuite;
|
|
|
|
|
|
|
|
public class AppTest extends TestCase {
|
|
|
|
/**
|
|
|
|
* Create the test case
|
|
|
|
*
|
|
|
|
* @param testName name of the test case
|
|
|
|
*/
|
2017-11-21 11:04:32 +01:00
|
|
|
public AppTest(String testName) {
|
|
|
|
super(testName);
|
2014-02-25 10:28:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return the suite of tests being tested
|
|
|
|
*/
|
|
|
|
public static Test suite() {
|
2017-11-21 11:04:32 +01:00
|
|
|
return new TestSuite(AppTest.class);
|
2014-02-25 10:28:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Rigourous Test :-)
|
|
|
|
*/
|
|
|
|
public void testApp() {
|
2017-11-21 11:04:32 +01:00
|
|
|
assertTrue(true);
|
2014-02-25 10:28:22 +01:00
|
|
|
}
|
|
|
|
}
|