aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/core/ivigenerator/org.example.echo.yaml
blob: d1750bf54d59bf948a511fb9fc55035b58dd58ef (plain)
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
org.example.echo.EchoZoned#stringValue:
    config_simulator:
        default: "two"

org.example.echo.Echo#intValue:
    config_simulator:
      default_value: 61
      range_high: 150
      range_low:  0

org.example.echo.Echo#contact:
    config_simulator:
        zoned: true
        default: [ "foo", 23, true, 1234 ]

org.example.echo.Echo#combo:
    config_simulator:
        zoned: true
        default: [ [ "foo", 23, true, 1234 ], WeekDay.Monday ]

org.example.echo.Echo#intList:
    config_simulator:
        default: [1, 2, 3, 4]

org.example.echo.Echo#comboList:
    config_simulator:
        default: [[ [ "foo", 23, true, 1234 ], WeekDay.Monday ], [ [ "bar", 21, false, "foo" ], WeekDay.Tuesday ]]

org.example.echo.Echo#contactList:
    config_simulator:
        default: [[ "foo", 23, true, WeekDay.Monday ], [ "bar", 12, false, false ]]

org.example.echo.EchoZoned:
    config_simulator:
        zones: [ FrontLeft, FrontRight, Rear ]

org.example.echo.EchoZoned#stringValue:
    config_simulator:
        default: { FrontLeft: "two", Rear: "one", =: "general" }

org.example.echo.EchoZoned#intValue:
    config_simulator:
        default: 11
        range: { FrontLeft: [10, 33], Rear: [0, 11] }

org.example.echo.EchoZoned#zonedValue:
    config_simulator:
        default: true
        zoned: true

org.example.echo.EchoZoned#valueWithDefault:
    config_simulator:
        default: true

org.example.echo.EchoZoned#unsupportedValue:
    config_simulator:
        unsupported: true

org.example.echo.EchoZoned#rangedValue:
    config_simulator:
      range_high: 50
      range_low:  0

org.example.echo.EchoZoned#rangedValueWithDefault:
    config_simulator:
      default_value: 42
      range_high: 150
      range_low:  0

org.example.echo.EchoZoned#contact:
    config_simulator:
        zoned: true
        default: { FrontLeft: [ "foo", 23, true, 1234 ], Rear: [ "bar", 1, false, 3456 ] }

org.example.echo.EchoZoned#combo:
    config_simulator:
        zoned: true
        default: [ [ "foo", 23, true, 1234 ], WeekDay.Monday ]

org.example.echo.EchoZoned#intList:
    config_simulator:
        default: [1, 2, 3, 4]

org.example.echo.EchoZoned#comboList:
    config_simulator:
        default: [[ [ "foo", 23, true, 1234 ], WeekDay.Monday ], [ [ "bar", 21, false, "foo" ], WeekDay.Tuesday ]]