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
{{ message }}
This repository was archived by the owner on Mar 21, 2022. It is now read-only.
[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?