ExampleUnitTest.kt 348B

123456789101112131415161718
  1. package fr.forum_thalie.tsumugi
  2. import org.junit.Test
  3. import org.junit.Assert.*
  4. /**
  5. * Example local unit test, which will execute on the development machine (host).
  6. *
  7. * See [testing documentation](http://d.android.com/tools/testing).
  8. */
  9. class ExampleUnitTest {
  10. @Test
  11. fun addition_isCorrect() {
  12. assertEquals(4, 2 + 2)
  13. }
  14. }