6 references to TestBinder
Microsoft.AspNetCore.Components.Server.Tests (6)
src\SignalR\common\SignalR.Common\test\Internal\Protocol\MessagePackHubProtocolTestBase.cs (3)
362
var binder = new
TestBinder
(new[] { typeof(string) }, typeof(string));
395
var binder = new
TestBinder
(new[] { typeof(string) }, typeof(string));
406
var binder = new
TestBinder
(new[] { typeof(string) }, typeof(string));
src\SignalR\common\SignalR.Common\test\Internal\Protocol\TestBinder.cs (3)
35
public TestBinder() :
this
(null, null) { }
36
public TestBinder(Type[] paramTypes) :
this
(paramTypes, null) { }
37
public TestBinder(Type returnType) :
this
(null, returnType) { }