Skip to content

Commit

Permalink
added tests and small fix in config
Browse files Browse the repository at this point in the history
  • Loading branch information
RasAV committed Jul 14, 2020
1 parent 67d5de9 commit dfb6241
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: 2.1
jobs:
build:
docker:
- image: circleci/openjdk:12.0.2-jdk-stretch
- image: circleci/openjdk:11.0.3-jdk-stretch
working_directory: ~/repo
steps:
- checkout:
Expand Down
11 changes: 11 additions & 0 deletions src/test/kotlin/MainKtTest.kt
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import org.junit.jupiter.api.Test

import org.junit.jupiter.api.Assertions.*

internal class MainKtTest {

@Test
fun sum() {
assertEquals(10, 5 + 5)
}
}

0 comments on commit dfb6241

Please sign in to comment.