Akka.Cluster.Utility.Tests.DistributedActorTableContainerTest.TestSystem.TestSystem C# (CSharp) Метод

TestSystem() публичный Метод

public TestSystem ( Akka.TestKit.TestKitBase testKit, string name, int containerCount ) : System
testKit Akka.TestKit.TestKitBase
name string
containerCount int
Результат System
            public TestSystem(TestKitBase testKit, string name, int containerCount)
            {
                _testKit = testKit;
                _name = name;
                _nullDiscovery = _testKit.ActorOf(BlackHoleActor.Props);

                Table = _testKit.ActorOfAsTestActorRef(
                    () => new Table("TEST", _name, _nullDiscovery, typeof(IncrementalIntegerIdGenerator), null),
                    _name);
                Containers = new List<TestActorRef<DistributedActorTableContainer<long>>>();
                for (int i = 0; i < containerCount; i++)
                    AddConstainer();
            }
DistributedActorTableContainerTest.TestSystem