Base class for FDO tests that use a real FdoCache, or a fake one.
Inheritance: SIL.FieldWorks.Test.TestUtils.BaseTest
Example #1
0
		/// ------------------------------------------------------------------------------------
		/// <summary>
		/// Initializes a new instance of the <see cref="DummyUndoImportManager"/> class.
		/// </summary>
		/// ------------------------------------------------------------------------------------
		public DummyUndoImportManager(FdoTestBase testBase) :
			base(testBase.Cache)
		{
			m_testBase = testBase;
		}
Example #2
0
		/// ------------------------------------------------------------------------------------
		/// <summary>
		/// Constructor to use when using an in-memory cache
		/// </summary>
		/// ------------------------------------------------------------------------------------
		public DummyTeImporter(IScrImportSet settings, FdoTestBase testBase,
			FwStyleSheet styleSheet) :
			base(settings, testBase.Cache, styleSheet, new DummyUndoImportManager(testBase),
				new TeImportNoUi())
		{
		}