Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
marad committed Nov 19, 2023
1 parent 0445ea5 commit 0c2b206
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/test/kotlin/gr/marad/tiler/GraphicalTest.kt
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,10 @@ val os = object : OsFacade {
TODO("Not yet implemented")
}

override fun userHome(): String {
TODO("Not yet implemented")
}

override fun execute(command: TilerCommand) {
TODO("Not yet implemented")
}
Expand Down Expand Up @@ -99,7 +103,7 @@ val os = object : OsFacade {
}

}
val config = ConfigFacade.createConfig()
val config = ConfigFacade.createConfig(os)
val tiler = TilerFacade.createTiler(config, os)
val executor = TilerCommandsExecutorAndWatcher(os, filteringRules)
val eventHandler = TilerWindowEventHandler(tiler, filteringRules, os, executor)
Expand Down

0 comments on commit 0c2b206

Please sign in to comment.