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).
17 lines
653 B
JSON
17 lines
653 B
JSON
{
|
|
"scenario": "Declarations tests",
|
|
"description": "Tests for interesting combinations of .local and .input",
|
|
"defaultTestProperties": {
|
|
"locale": "en-US"
|
|
},
|
|
"tests": [
|
|
{ "src": ".input {$var :number minimumFractionDigits=$var2} .input {$var2 :number minimumFractionDigits=5} {{{$var} {$var2}}}",
|
|
"params": [{ "name": "var", "value": 1}, {"name": "var2", "value": 3 }],
|
|
"expErrors": [{ "type": "duplicate-declaration" }]
|
|
},
|
|
{ "src": ".local $var = {$var2} .local $var2 = {1} {{{$var} {$var2}}}",
|
|
"params": [{ "name": "var2", "value": 5 }],
|
|
"expErrors": [{ "type": "duplicate-declaration" }]
|
|
}
|
|
]
|
|
}
|