diff options
| author | Roy <roy.mail.net@gmail.com> | 2017-12-19 21:03:07 +0200 |
|---|---|---|
| committer | Roy <roy.mail.net@gmail.com> | 2017-12-19 21:03:07 +0200 |
| commit | 5b02d81046b5105eb7886131808cba7b7465c2a3 (patch) | |
| tree | 7dbcf82558180d2fd1eb3f0c7ef94cd88df71efe /Software/Android_Studio/Tango.UnitTesting/src/androidTest/java/com | |
| parent | 483308997b921c66285c8138a6a693c2118aff39 (diff) | |
| download | Tango-5b02d81046b5105eb7886131808cba7b7465c2a3.tar.gz Tango-5b02d81046b5105eb7886131808cba7b7465c2a3.zip | |
MERGE.
Diffstat (limited to 'Software/Android_Studio/Tango.UnitTesting/src/androidTest/java/com')
| -rw-r--r-- | Software/Android_Studio/Tango.UnitTesting/src/androidTest/java/com/twine/tango/unittesting/DAL_TST.java | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/Software/Android_Studio/Tango.UnitTesting/src/androidTest/java/com/twine/tango/unittesting/DAL_TST.java b/Software/Android_Studio/Tango.UnitTesting/src/androidTest/java/com/twine/tango/unittesting/DAL_TST.java new file mode 100644 index 000000000..f04070d6a --- /dev/null +++ b/Software/Android_Studio/Tango.UnitTesting/src/androidTest/java/com/twine/tango/unittesting/DAL_TST.java @@ -0,0 +1,21 @@ +package com.twine.tango.unittesting; + +import android.content.Context; +import android.support.test.InstrumentationRegistry; +import android.support.test.runner.AndroidJUnit4; + +import org.junit.runner.RunWith; + +/** + * Created by Roy on 12/19/2017. + */ + +@RunWith(AndroidJUnit4.class) +public class DAL_TST +{ + public void perform_basic_dal_test() + { + // Context of the app under test. + Context appContext = InstrumentationRegistry.getTargetContext(); + } +} |
