Mercurial > cgi-bin > hgwebdir.cgi > FriendStream > ASProto
diff app/src/androidTest/java/com/example/musicplayer/ApplicationTest.java @ 2:3485a304a057
adding new branch with the original tutorial code -- later merge to main and mod
| author | kshalle |
|---|---|
| date | Thu, 23 Apr 2015 10:53:54 -0700 |
| parents | |
| children |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/app/src/androidTest/java/com/example/musicplayer/ApplicationTest.java Thu Apr 23 10:53:54 2015 -0700 1.3 @@ -0,0 +1,13 @@ 1.4 +package com.example.musicplayer; 1.5 + 1.6 +import android.app.Application; 1.7 +import android.test.ApplicationTestCase; 1.8 + 1.9 +/** 1.10 + * <a href="http://d.android.com/tools/testing/testing_android.html">Testing Fundamentals</a> 1.11 + */ 1.12 +public class ApplicationTest extends ApplicationTestCase<Application> { 1.13 + public ApplicationTest() { 1.14 + super(Application.class); 1.15 + } 1.16 +} 1.17 \ No newline at end of file
