Skip to content

Commit

Permalink
Convert Example Unit Test to Kotlin
Browse files Browse the repository at this point in the history
  • Loading branch information
Delacrix Morgan committed Jul 19, 2018
1 parent 94ba5a6 commit fdcb7dc
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 17 deletions.

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
package com.delacrixmorgan.squark.data

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).toLong())
}
}

0 comments on commit fdcb7dc

Please sign in to comment.