You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: test/Microsoft.AspNetCore.SignalR.Common.Tests/Internal/Protocol/JsonHubProtocolTests.cs
+32Lines changed: 32 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -250,6 +250,7 @@ public void ExtraItemsInMessageAreIgnored(string input)
250
250
[InlineData("{'type':4,'invocationId':'42','target':'foo','arguments':[ 'abc', 'xyz']}","Error binding arguments. Make sure that the types of the provided values match the types of the hub method being invoked.")]
251
251
[InlineData("{'type':1,'invocationId':'42','target':'foo','arguments':[1,'',{'1':1,'2':2}]}","Invocation provides 3 argument(s) but target expects 2.")]
252
252
[InlineData("{'type':1,'arguments':[1,'',{'1':1,'2':2}]},'invocationId':'42','target':'foo'","Invocation provides 3 argument(s) but target expects 2.")]
253
+
[InlineData("{'type':1,'invocationId':'42','target':'foo','arguments':[1,[]]}","Error binding arguments. Make sure that the types of the provided values match the types of the hub method being invoked.")]
0 commit comments