aboutsummaryrefslogtreecommitdiff
path: root/tests/run/sysprops.scala
blob: bdad677221d32842b67a3c96dfeac705f16389d5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
import sys._

/** Basic sys.Prop test. */
object Test {
  val key = "ding.dong.doobie"

  def bool() = {
    val prop = BooleanProp.valueIsTrue(key)
    assert(prop.key == key)

    prop.clear()
    assert(!prop.value)
    assert(!prop.isSet)
    assert(prop.get != null)

    prop set "dingus"
    assert(prop.get == "dingus")
    assert(!prop.value)
    prop set "true"
    assert(prop.value)
    prop.toggle()
    assert(!prop.value)
    prop.enable()
    assert(prop.value)
    prop.disable()
    assert(!prop.value)
  }
  def int() = {
    val prop = Prop[Int](key)
    prop.clear()
    assert(prop.value == 0)
    prop.set("523")
    assert(prop.value == 523)
    prop.set("DingusInt")

    try { println(prop.value) ; assert(false, "should not get here") }
    catch { case _: Exception => () }
  }
  def double() = {
    val prop = Prop[Double](key)
    prop.set("55.0")
    assert(prop.value == 55.0)
  }

  def main(args: Array[String]): Unit = {
    bool()
    int()
    double()
  }
}