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