public void TestAddEntry() { Repository repository = new Repository(); string tName = "TestTable", cName = "TestColumn"; DataDictionaryEntity newEntry = new DataDictionaryEntity() { TableName = tName, ColumnName = cName, Decription = "Testing Testing", PrxNo = "Testing 12345" }; repository.AddEntry(newEntry); var result = repository.GetEntryByTableColumnName(tName, cName); Assert.That(result != null, "Testing DataDict didn't get Inserted"); }
public void SubmitForm(DataDictionaryEntity entity, string keyValue) { throw new NotImplementedException(); }