Пример #1
0
        public void DoesNotAddNavigationName_GivenExpressionWithMethod()
        {
            var spec = new StoreIncludeMethodSpec();

            string expected = string.Empty;
            string actual   = spec.IncludeAggregators.FirstOrDefault().IncludeString;

            actual.Should().Be(expected);
        }
Пример #2
0
        public void ShouldGetEmptyString_ForExpressionWithMethod()
        {
            var spec = new StoreIncludeMethodSpec();

            string expeted = string.Empty;
            string actual  = spec.IncludeAggregators.FirstOrDefault().IncludeString;

            Assert.Equal(expeted, actual);
        }