From f33a18c029834134b813f061c89f65500f7ee6db Mon Sep 17 00:00:00 2001 From: Peter van 't Hof <p.j.van_t_hof@lumc.nl> Date: Fri, 9 Jan 2015 11:07:53 +0100 Subject: [PATCH] Add test for default value --- .../nl/lumc/sasc/biopet/core/config/ConfigurableTest.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/biopet-framework/src/test/scala/nl/lumc/sasc/biopet/core/config/ConfigurableTest.scala b/public/biopet-framework/src/test/scala/nl/lumc/sasc/biopet/core/config/ConfigurableTest.scala index e204656d7..83df3627d 100644 --- a/public/biopet-framework/src/test/scala/nl/lumc/sasc/biopet/core/config/ConfigurableTest.scala +++ b/public/biopet-framework/src/test/scala/nl/lumc/sasc/biopet/core/config/ConfigurableTest.scala @@ -31,6 +31,7 @@ class ConfigurableTest extends TestNGSuite with MockitoSugar with Matchers { intercept[IllegalStateException] { classC.get("notexist", required = true) } + classC.get("notexist", default = "default").asString shouldBe "default" classC.get("k1", freeVar = false).asString shouldBe "c1" classC.classB.get("k1", freeVar = false).asString shouldBe "b1" @@ -42,7 +43,6 @@ abstract class Cfg extends Configurable { def get(key: String, default: String = null, submodule: String = null, required: Boolean = false, freeVar: Boolean = true) = { config(key, default, submodule, required, freeVar = freeVar) } - } class ClassA(val root: Configurable) extends Cfg -- GitLab