public void TestSetup()
 {
     this.ServicePocoClient = new TestNetworkServicePocoClient();
     this.ServiceLocator = new ServiceLocator();
     
     var manager = this.ServiceLocator.Locate<IServiceLocationOverrideManager>();
     manager.RegisterServiceInstance(typeof(INetworkServicePocoClientFactory), new TestNetworkServicePocoClientFactory(this.ServicePocoClient));
 }
        public void TestSetup()
        {
            this.ServicePocoClient = new TestNetworkServicePocoClient();
            this.ServiceLocator    = new ServiceLocator();

            var manager = this.ServiceLocator.Locate <IServiceLocationOverrideManager>();

            manager.RegisterServiceInstance(typeof(INetworkServicePocoClientFactory), new TestNetworkServicePocoClientFactory(this.ServicePocoClient));
        }
 public void TestCleanup()
 {
     this.ServicePocoClient = new TestNetworkServicePocoClient();
     this.ServiceLocator = new ServiceLocator();
 }
 public void TestCleanup()
 {
     this.ServicePocoClient = new TestNetworkServicePocoClient();
     this.ServiceLocator    = new ServiceLocator();
 }