Initial commit
This commit is contained in:
commit
b333128660
55 changed files with 1638 additions and 0 deletions
11
examples/src/test/kotlin/com/example/ExampleTest.kt
Normal file
11
examples/src/test/kotlin/com/example/ExampleTest.kt
Normal file
|
@ -0,0 +1,11 @@
|
|||
package com.example
|
||||
|
||||
import kotlin.test.Test
|
||||
import kotlin.test.assertEquals
|
||||
|
||||
class ExampleTest {
|
||||
@Test
|
||||
fun verifyHello() {
|
||||
assertEquals("Hello World!", Example().message)
|
||||
}
|
||||
} // https://detekt.dev/docs/1.22.0/rules/empty-blocks#emptyfunctionblock
|
Loading…
Add table
Add a link
Reference in a new issue