Exemplo n.º 1
0
        public void Evaluate_Column_UsingExtendedProperties_PhysicalName_EndsWith_Timestamp()
        {
            DataColumn c = new DataColumn();

            c.ExtendedProperties.Add("LogicalName", "Last Update Timestamp");
            RuleExpression expression = TestData_RuleExpressions.LogicalName_EndsWith_Timestamp();

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