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"); } }