public void ThenTheLinkisRemovedFromTheCollection()
        {
            // arrange
            _sut.Links.Count.Should().Be(1);

            // act
            _sut.RemoveLink <TestLink>();

            // assert
            _sut.Links.Count.Should().Be(0);
        }
        public void ThenWithAnEmptyCollectionTheCollectionIsStillEmpty()
        {
            // arrange
            _sut = new Models.LinkCollection();
            _sut.Links.Count.Should().Be(0);

            // act
            _sut.RemoveLink <TestLink>();

            // assert
            _sut.Links.Count.Should().Be(0);
        }