mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-04 13:05:31 +00:00
Implement :test:format, :test:select, and :test:function, which are required by the new `pattern-selection.json` tests. Change the internal value representation in the formatter in order to support some of the test cases (binding the results of selectors to a variable).
37 lines
1 KiB
JSON
37 lines
1 KiB
JSON
{
|
|
"scenario": "Duplicate declaration errors",
|
|
"description": "Tests that should trigger a duplicate declaration error",
|
|
"defaultTestProperties": {
|
|
"locale": "en-US",
|
|
"expErrors": [
|
|
{
|
|
"type": "duplicate-declaration"
|
|
}
|
|
]
|
|
},
|
|
"tests": [
|
|
{
|
|
"src": ".local $foo = {$foo} .local $foo = {42} {{bar {$foo}}}",
|
|
"params": [{ "name": "foo", "value": "foo" }]
|
|
},
|
|
{
|
|
"src": ".local $foo = {42} .local $foo = {42} {{bar {$foo}}}",
|
|
"params": [{ "name": "foo", "value": "foo" }]
|
|
},
|
|
{
|
|
"src": ".local $foo = {:unknown} .local $foo = {42} {{bar {$foo}}}",
|
|
"params": [{ "name": "foo", "value": "foo" }]
|
|
},
|
|
{
|
|
"src": ".local $x = {42} .local $y = {$x} .local $x = {13} {{{$x} {$y}}}"
|
|
},
|
|
{
|
|
"src": ".local $foo = {$foo} {{bar {$foo}}}",
|
|
"params": [{ "name": "foo", "value": "foo" }]
|
|
},
|
|
{
|
|
"src": ".local $foo = {$bar} .local $bar = {$baz} {{bar {$foo}}}",
|
|
"params": [{ "name": "baz", "value": "foo" }]
|
|
}
|
|
]
|
|
}
|