Exemple #1
0
        public static void IsFieldValueEqual <T>(T expectedValue, string databaseName, string tableName, string field, string primaryKeyField, int id)
        {
            var value = DataUtil.GetFieldValue <T>(databaseName, tableName, field, primaryKeyField, id.ToString());

            Assert.AreEqual(expectedValue, value);
        }