private void SetupReversalFactoriesAndRepositories()
 {
     Assert.True(Cache != null, "No cache yet!?");
     m_revIndexEntryFactory = Cache.ServiceLocator.GetInstance <IReversalIndexEntryFactory>();
     m_revIndexFactory      = Cache.ServiceLocator.GetInstance <IReversalIndexFactory>();
     m_revIndexRepo         = Cache.ServiceLocator.GetInstance <IReversalIndexRepository>();
 }
		private void SetupReversalFactoriesAndRepositories()
		{
			Assert.True(Cache != null, "No cache yet!?");
			m_revIndexEntryFactory = Cache.ServiceLocator.GetInstance<IReversalIndexEntryFactory>();
			m_revIndexFactory = Cache.ServiceLocator.GetInstance<IReversalIndexFactory>();
			m_revIndexRepo = Cache.ServiceLocator.GetInstance<IReversalIndexRepository>();
		}
 public void Setup()
 {
     m_revIndexRepo         = Cache.ServiceLocator.GetInstance <IReversalIndexRepository>();
     m_revIndexEntryFactory = Cache.ServiceLocator.GetInstance <IReversalIndexEntryFactory>();
 }
		public void Setup()
		{
			m_revIndexRepo = Cache.ServiceLocator.GetInstance<IReversalIndexRepository>();
			m_revIndexEntryFactory = Cache.ServiceLocator.GetInstance<IReversalIndexEntryFactory>();
		}
Ejemplo n.º 5
0
 public override void TestSetup()
 {
     base.TestSetup();
     m_revIndexRepo      = Cache.ServiceLocator.GetInstance <IReversalIndexRepository>();
     m_revIndexEntryRepo = Cache.ServiceLocator.GetInstance <IReversalIndexEntryRepository>();
 }