public void SetUp()
        {
            var tableDef     = new TableDefinition("Test");
            var tableBuilder = new TableDefiner(tableDef);

            tableBuilder.CompareKey("Key");
            _table = new SnapshotTable(tableDef);
        }
Beispiel #2
0
 public void SetUp()
 {
     _collection = new SnapshotCollection();
     _definer    = _collection.DefineTable(TestTableName);
 }