Skip to content

Commit

Permalink
[tests] add missing test for nullBool
Browse files Browse the repository at this point in the history
  • Loading branch information
yuxiaomao committed Apr 22, 2024
1 parent 2455d35 commit 8952e43
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions tests/unit/src/unit/TestOps.hx
Original file line number Diff line number Diff line change
Expand Up @@ -172,6 +172,9 @@ class TestOps extends Test {

t(null == nullBool);
t(nullBool == null);
f(null != nullBool);
f(nullBool != null);

f(false == nullBool);
f(nullBool == false);
t(false != nullBool);
Expand Down

0 comments on commit 8952e43

Please sign in to comment.