Skip to content

Commit a1d8137

Browse files
committed
added another bool dsl integration test
1 parent b1217a8 commit a1d8137

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

src/Tests/QueryDsl/BoolDsl/BoolApiTests.cs

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,14 @@ await Bool(
130130
+Id(1) || +Id(2) || +Id(3) || +Id(4) && !O(E.Option1) || O(E.Option2),
131131
expectedCount: 12
132132
);
133+
134+
await Bool(
135+
a => a.Option != E.Option1 && a.Id != 2 && a.Id != 3,
136+
a => !a.O(E.Option1) && !a.Id(2) && !+a.Id(3),
137+
!O(E.Option1) && !Id(2) && !+Id(3),
138+
expectedCount: 9
139+
);
140+
133141
}
134142
}
135143
}

0 commit comments

Comments
 (0)