public void TestFixtureSetUp() { appHost = new AppHost(); appHost.Init(); appHost.Start(ListeningOn); using (var redis = appHost.TryResolve<IRedisClientsManager>().GetClient()) redis.FlushAll(); }
public void TestFixtureTearDown() { appHost.Dispose(); appHost = null; }