public void SetsNothing_GivenSelectorSpecWithNoInMemoryExpression()
        {
            var spec = new StoreNamesEmptySpec();

            spec.InMemory.Should().BeNull();
        }
Пример #2
0
        public void SetsNothing_GivenSelectorSpecWithNoPostProcessingAction()
        {
            var spec = new StoreNamesEmptySpec();

            spec.PostProcessingAction.Should().BeNull();
        }
        public void SetsNothing_GivenNoSelectExpression()
        {
            var spec = new StoreNamesEmptySpec();

            spec.Selector.Should().BeNull();
        }