public void NotEquals()
        {
            var sut = new C1(new D1());
            var other = new C1(Mock.Of<D1>());

            sut.Should().NotBe(other);
        }
        public void Equals()
        {
            var sut = new C1(new D1());
            var other = new C1(new D1());

            sut.Should().Be(other);
        }