Tests/Unit/TestData/config.json

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
    "MyString": "This is a test JSON config file!",
    "MyIntegerPositive": 42,
    "MyIntegerNegative": -153,
    "MyBooleanTrue": true,
    "MyBooleanFalse": false,
    "MyArray": [
                    "Lorem",
                    "Ipsum"
                ],
    "MyHashtable": {
                        "Foo": "Bar",
                        "Hello": "World"
                    }
}