예제 #1
0
        public void _Test_Table_Exists()
        {
            _setup.CheckSetUp();
            bool exists = _setup.TransactionTableExists();

            Assert.True(exists);
        }
예제 #2
0
 public MassiveList()
 {
     // Make sure tests can run independently:
     _setup.CheckSetUp();
     _transactions = new SQLServerList <Transaction>(_connectionStringName, _testTableName, _tablePkColumn);
 }