Skip to content
This repository has been archived by the owner on Dec 21, 2022. It is now read-only.

valueliteralsandselectors update #629

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
valueliteralsandselectors update
  • Loading branch information
Mechineni committed Oct 25, 2022
commit b7b9ca94e3fab6c38ce7be87913ce80337a9d93a
Original file line number Diff line number Diff line change
Expand Up @@ -167,15 +167,13 @@ public static Object[][] dataMethod() {
"cql/CqlTypesTest/DateTime/DateTimeUncertain",
"cql/CqlTypesTest/Time/TimeUpperBoundMillis",

"cql/ValueLiteralsAndSelectors/Boolean/BooleanFalse",
"cql/ValueLiteralsAndSelectors/Boolean/BooleanTrue",

"cql/ValueLiteralsAndSelectors/Decimal/Decimal10Pow28",
"cql/ValueLiteralsAndSelectors/Decimal/DecimalNeg10Pow28",
"cql/ValueLiteralsAndSelectors/Decimal/DecimalNegTenthStep",
"cql/ValueLiteralsAndSelectors/Decimal/DecimalPos10Pow28",
"cql/ValueLiteralsAndSelectors/Decimal/DecimalPosTenthStep",
"cql/ValueLiteralsAndSelectors/Decimal/DecimalTenthStep",
"cql/ValueLiteralsAndSelectors/Null/Null",

"r4/tests-fhir-r4/from-Zulip/(true and 'foo').empty()",
"r4/tests-fhir-r4/from-Zulip/(true | 'foo').allTrue()",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<group name="Null">
<test name="Null">
<expression>null</expression>
<output>@2000 &lt; @2000-01</output>
<output>null</output>
</test>
</group>
<!-- CQL spec section 3.1.3 Literals:
Expand All @@ -16,11 +16,11 @@
<group name="Boolean">
<test name="BooleanFalse">
<expression>false</expression>
<output>1~0</output>
<output>(1~0)</output>
</test>
<test name="BooleanTrue">
<expression>true</expression>
<output>1~1</output>
<output>(1~1)</output>
</test>
</group>
<!-- CQL spec section 3.1.3 Literals:
Expand Down