Exemplo n.º 1
0
        public void Evaluate_Table_UsingExtendedProperties_PhysicalName_Is_PRSN()
        {
            RuleExpression expression = TestData_RuleExpressions.PhysicalName_Equals_PRSN();

            DataTable t = new DataTable();

            t.ExtendedProperties.Add("PhysicalName", "PRSN");

            Assert.True(expression.Evaluate(t));
        }