We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 84a78a0 commit e0b3cefCopy full SHA for e0b3cef
test/JsonApiDotNetCoreExampleTests/Acceptance/TodoItemsControllerTests.cs
@@ -114,6 +114,9 @@ public async Task Can_Filter_TodoItems_Using_IsNotNull_Operator()
114
115
// Assert
116
Assert.NotEmpty(deserializedBody);
117
+
118
+ foreach (var todoItemResult in deserializedBody)
119
+ Assert.Equal(todoItem.Ordinal, todoItemResult.Ordinal);
120
}
121
122
[Fact]
@@ -139,6 +142,9 @@ public async Task Can_Filter_TodoItems_Using_IsNull_Operator()
139
142
140
143
141
144
145
146
147
148
149
150
0 commit comments