summaryrefslogtreecommitdiff
path: root/RGens/src/test/java
diff options
context:
space:
mode:
authorbculkin2442 <bjculkin@mix.wvu.edu>2016-02-21 15:44:28 -0500
committerbculkin2442 <bjculkin@mix.wvu.edu>2016-02-21 15:44:28 -0500
commit7384f8935d6fe507e81a7355d8dec1d2511fec07 (patch)
tree5cd50d1ff3f7abb0cefc07923d77840e80d87f57 /RGens/src/test/java
parent29d19f01b889e6a1882c165c75693fccc918b557 (diff)
Some misc. refactoring of things and additional functionality
Diffstat (limited to 'RGens/src/test/java')
-rw-r--r--RGens/src/test/java/bjc/RGens/AppTest.java48
1 files changed, 22 insertions, 26 deletions
diff --git a/RGens/src/test/java/bjc/RGens/AppTest.java b/RGens/src/test/java/bjc/RGens/AppTest.java
index 25fb563..7620403 100644
--- a/RGens/src/test/java/bjc/RGens/AppTest.java
+++ b/RGens/src/test/java/bjc/RGens/AppTest.java
@@ -7,32 +7,28 @@ import junit.framework.TestSuite;
/**
* Unit test for simple App.
*/
-public class AppTest
- extends TestCase
-{
- /**
- * Create the test case
- *
- * @param testName name of the test case
- */
- public AppTest( String testName )
- {
- super( testName );
- }
+public class AppTest extends TestCase {
+ /**
+ * Create the test case
+ *
+ * @param testName
+ * name of the test case
+ */
+ public AppTest(String testName) {
+ super(testName);
+ }
- /**
- * @return the suite of tests being tested
- */
- public static Test suite()
- {
- return new TestSuite( AppTest.class );
- }
+ /**
+ * @return the suite of tests being tested
+ */
+ public static Test suite() {
+ return new TestSuite(AppTest.class);
+ }
- /**
- * Rigourous Test :-)
- */
- public void testApp()
- {
- assertTrue( true );
- }
+ /**
+ * Rigourous Test :-)
+ */
+ public void testApp() {
+ assertTrue(true);
+ }
}