Skip to content

Commit

Permalink
changed test case value
Browse files Browse the repository at this point in the history
  • Loading branch information
DK070202 committed Nov 16, 2022
1 parent cfcb68e commit 9bc5541
Showing 1 changed file with 39 additions and 1 deletion.
40 changes: 39 additions & 1 deletion test/test_cases/test_case.dart
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,45 @@ const String gbTestCases = r'''
},
false
],
[
"$gt /$lt strings - fail $lt ",
{
"word": {
"$gt": "alphabet",
"$lt": "zebra"
}
},
{
"word": "zebra"
},
false
],
[
"$gt /$lt strings - pass",
{
"word": {
"$gt": "alphabet",
"$lt": "zebra"
}
},
{
"word": "always"
},
true
],
[
"$gt /$lt strings - fail uppercase",
{
"word": {
"$gt": "alphabet",
"$lt": "zebra"
}
},
{
"word": "AZL"
},
false
],
[
"$not - fail",
{
Expand Down

0 comments on commit 9bc5541

Please sign in to comment.