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
[Fact]
public async Task SaysHelloCorrectly()
{
var cluster = new TestCluster();
cluster.Deploy();
var hello = cluster.GrainFactory.GetGrain<IHelloGrain>(Guid.NewGuid());
var greeting = await hello.SayHello();
cluster.StopAllSilos();
Assert.Equal("Hello, World", greeting);
}
TestCluster doesn't have a parameterless constructor, and it's not obvious what's needed to get it going. Should its usage be completely replaced by TestClusterBuilder?
From https://github.com/dotnet/orleans-docs/blob/master/src/docs/implementation/testing.md/#L1
TestClusterdoesn't have a parameterless constructor, and it's not obvious what's needed to get it going. Should its usage be completely replaced byTestClusterBuilder?