diff options
| author | Eder Bastos <bastos.eder@gmail.com> | 2015-04-30 18:15:10 -0400 |
|---|---|---|
| committer | Eder Bastos <bastos.eder@gmail.com> | 2015-05-02 21:49:17 -0400 |
| commit | c80225ea4d023ed91503521b74951db3a302ca20 (patch) | |
| tree | d69c8493aedf1226b9d4e9b447ef09364aaace84 /Source/Android/app/src/androidTest/java/org | |
| parent | 4b00ccbe4ed79a3fd3369ca1b2972f0b8e4224ef (diff) | |
Convert the Android source code to the directory structure of a Gradle-based Android Studio project.
Diffstat (limited to 'Source/Android/app/src/androidTest/java/org')
| -rw-r--r-- | Source/Android/app/src/androidTest/java/org/dolphinemu/dolphinemu/ApplicationTest.java | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Source/Android/app/src/androidTest/java/org/dolphinemu/dolphinemu/ApplicationTest.java b/Source/Android/app/src/androidTest/java/org/dolphinemu/dolphinemu/ApplicationTest.java new file mode 100644 index 0000000000..cf1848ddd5 --- /dev/null +++ b/Source/Android/app/src/androidTest/java/org/dolphinemu/dolphinemu/ApplicationTest.java @@ -0,0 +1,13 @@ +package org.dolphinemu.dolphinemu; + +import android.app.Application; +import android.test.ApplicationTestCase; + +/** + * <a href="http://d.android.com/tools/testing/testing_android.html">Testing Fundamentals</a> + */ +public class ApplicationTest extends ApplicationTestCase<Application> { + public ApplicationTest() { + super(Application.class); + } +}
\ No newline at end of file |
