Created
January 30, 2014 23:47
-
-
Save hkolbeck/8722610 to your computer and use it in GitHub Desktop.
TDD, YO
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.urbanairship; | |
import junit.framework.Test; | |
import junit.framework.TestCase; | |
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 ); | |
} | |
/** | |
* @return the suite of tests being tested | |
*/ | |
public static Test suite() | |
{ | |
return new TestSuite( AppTest.class ); | |
} | |
/** | |
* Rigourous Test :-) | |
*/ | |
public void testApp() | |
{ | |
assertTrue( true ); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment