Skip to content

Instantly share code, notes, and snippets.

@hkolbeck
Created January 30, 2014 23:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hkolbeck/8722610 to your computer and use it in GitHub Desktop.
Save hkolbeck/8722610 to your computer and use it in GitHub Desktop.
TDD, YO
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