Exemplo n.º 1
0
        public void Equals(bool left, bool right, bool expected)
        {
            var first = new Testee {
                Value = left
            };
            var second = new Testee {
                Value = right
            };

            Assert.That(Emitted.Equals(first, second), Is.EqualTo(expected));
        }
Exemplo n.º 2
0
 public static bool EmittedEquals <T>(this T self, T other)
 {
     return(Emitted.Equals(self, other));
 }