Skip to content

Instantly share code, notes, and snippets.

@thiagoolsilva
Last active May 19, 2016 04:36
Show Gist options
  • Save thiagoolsilva/7a3e963c79a400b91e47ca7b3c867152 to your computer and use it in GitHub Desktop.
Save thiagoolsilva/7a3e963c79a400b91e47ca7b3c867152 to your computer and use it in GitHub Desktop.
public class SimpleLog extends AndroidTestCase {
private static final String TAG = "test";
@Override
protected void setUp() throws Exception {
super.setUp();
Log.d(TAG, "setUp");
}
public void test_test_01() {
Log.d(TAG, "test_test_01");
}
public void test_test_02() {
Log.d(TAG, "test_test_02");
}
@Override
protected void tearDown() throws Exception {
super.tearDown();
Log.d(TAG, "tearDown");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment