public void WithoutReturnsCorrectResult()
        {
            // Arrange
            var sut = new NullComposer <PropertyHolder <object> >();
            // Act
            var result = sut.Without(x => x.Property);

            // Assert
            Assert.Same(sut, result);
        }
        public void WithoutReturnsCorrectResult()
        {
            // Fixture setup
            var sut = new NullComposer <PropertyHolder <object> >();
            // Exercise system
            var result = sut.Without(x => x.Property);

            // Verify outcome
            Assert.Same(sut, result);
            // Teardown
        }
 public void WithoutReturnsCorrectResult()
 {
     // Fixture setup
     var sut = new NullComposer<PropertyHolder<object>>();
     // Exercise system
     var result = sut.Without(x => x.Property);
     // Verify outcome
     Assert.Same(sut, result);
     // Teardown
 }