Last active
May 19, 2016 04:36
-
-
Save thiagoolsilva/7a3e963c79a400b91e47ca7b3c867152 to your computer and use it in GitHub Desktop.
This file contains 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
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