C# (CSharp) Akka.TestKit.VsTest Пространство имен

Пространства имен

Akka.TestKit.VsTest.Tests

Классы

Имя Описание
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"); } }