Example #1
0
        public void AddDateProperty_AddsGridColumn()
        {
            Expression <Func <AllTypesView, DateTime?> > propertyFunc = (model) => model.CreationDate;

            columns.AddDateProperty(propertyFunc);

            columns.Received().Add(propertyFunc);
        }