icu/testdata/message2/tricky-declarations.json
Tim Chevalier 7b8110f003 ICU-22907 MF2: Finish updating spec tests and implement required test functions
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).
2025-02-08 21:42:03 -06:00

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" }]
}
]
}