C# (CSharp) Akka.TestKit.VsTest Namespace

Nested Namespaces

Akka.TestKit.VsTest.Tests

Classes

Name Description
TestKit TestKit for Visual Studio Unit Testing Framework. You should always call Shutdown from your cleanup method, in order to not leak memory. Example: [TestClass] public class MyTests : TestKit { [TestCleanup] public void Cleanup() { Shutdown(); } [TestMethod] public void Expect_a_message() { TestActor.Tell("Test"); ExpectMsg("Test"); } }