Beispiel #1
0
        public void FindColumnNamesInCalculatedFieldWithAggregationMethod_(
            string fieldName,
            string expected)
        {
            var result = new TestCalculatedColumnHelper().FindColumnNamesInCalculatedFieldWithAggregationMethod(fieldName);

            var str = string.Join(",", result.Select(x => x.Item1 + "|" + x.Item2));

            Assert.AreEqual(expected, str);
        }