diff options
author | Joe Robinson <joe@lc8n.com> | 2019-04-20 03:56:13 +0200 |
---|---|---|
committer | Joe Robinson <joe@lc8n.com> | 2019-04-20 03:56:13 +0200 |
commit | 9d430209d39d0e68f6311adfff9d476c8856f662 (patch) | |
tree | f31e91badaafb62825e737e435d55cd89301a9ae /app/src/test |
Initial commit - working file list view
Diffstat (limited to 'app/src/test')
-rw-r--r-- | app/src/test/java/uk/co/blatech/blaupload3/ExampleUnitTest.kt | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/app/src/test/java/uk/co/blatech/blaupload3/ExampleUnitTest.kt b/app/src/test/java/uk/co/blatech/blaupload3/ExampleUnitTest.kt new file mode 100644 index 0000000..c90a846 --- /dev/null +++ b/app/src/test/java/uk/co/blatech/blaupload3/ExampleUnitTest.kt @@ -0,0 +1,17 @@ +package uk.co.blatech.blaupload3 + +import org.junit.Test + +import org.junit.Assert.* + +/** + * Example local unit test, which will execute on the development machine (host). + * + * See [testing documentation](http://d.android.com/tools/testing). + */ +class ExampleUnitTest { + @Test + fun addition_isCorrect() { + assertEquals(4, 2 + 2) + } +} |