Skip to content

Commit

Permalink
Test project dependencies (#10)
Browse files Browse the repository at this point in the history
Co-authored-by: hfhbd <[email protected]>
  • Loading branch information
hfhbd and hfhbd authored Feb 23, 2024
1 parent 5f47798 commit c129a61
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 0 deletions.
4 changes: 4 additions & 0 deletions day2/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
plugins {
id("setup")
}

dependencies {
api(projects.day1)
}
4 changes: 4 additions & 0 deletions day3/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
plugins {
id("setup")
}

dependencies {
implementation(projects.day2)
}
3 changes: 3 additions & 0 deletions day3/src/test/kotlin/Day3Test.kt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ import kotlin.test.Test
import kotlin.test.assertEquals

class Day3Test {
@Test fun a() {
getDigits("")
}
@Test
fun partOneSample() {
val input =
Expand Down

0 comments on commit c129a61

Please sign in to comment.