diff options
| author | Alberto Duarte (PWC) <alberto.duarte.delgado@pwc.com> | 2023-10-09 16:54:46 +0100 |
|---|---|---|
| committer | Alberto Duarte (PWC) <alberto.duarte.delgado@pwc.com> | 2023-10-09 16:54:46 +0100 |
| commit | 853548225c4e2541841e7602d7fff2ed122ab455 (patch) | |
| tree | fb003d8f5b1fd93b126906e966295424070bd632 /app/src/test/java/com/pwc/calculatorv2/ExampleUnitTest.kt | |
Initial commit
Diffstat (limited to 'app/src/test/java/com/pwc/calculatorv2/ExampleUnitTest.kt')
| -rw-r--r-- | app/src/test/java/com/pwc/calculatorv2/ExampleUnitTest.kt | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/app/src/test/java/com/pwc/calculatorv2/ExampleUnitTest.kt b/app/src/test/java/com/pwc/calculatorv2/ExampleUnitTest.kt new file mode 100644 index 0000000..604cdee --- /dev/null +++ b/app/src/test/java/com/pwc/calculatorv2/ExampleUnitTest.kt @@ -0,0 +1,17 @@ +package com.pwc.calculatorv2 + +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) + } +}
\ No newline at end of file |