| 29 | } |
| 30 | |
| 31 | value |
| 32 | testValue() const |
| 33 | { |
| 34 | return value{ |
| 35 | {"foo", {"bar", "baz", "baf"}}, |
| 36 | {"", 0}, |
| 37 | {"a/b", 1}, |
| 38 | {"c%d", 2}, |
| 39 | {"e^f", 3}, |
| 40 | {"g|h", 4}, |
| 41 | {"i\\j", 5}, |
| 42 | {"k\"l", 6}, |
| 43 | {" ", 7}, |
| 44 | {"m~n", 8}, |
| 45 | {"x", object{{"y", "z"}}}, |
| 46 | }; |
| 47 | } |
| 48 | |
| 49 | value |
| 50 | bigObject() const |
nothing calls this directly
no outgoing calls
no test coverage detected