Exemple #1
0
        public void TestEquals_True()
        {
            StringKey stringKey1 = new StringKey("test");
            StringKey stringKey2 = new StringKey("test");

            Assert.That(stringKey1.Equals(stringKey2), Is.True);
        }
Exemple #2
0
        public void TestEquals_False()
        {
            StringKey stringKey1 = new StringKey("stop");
            StringKey stringKey2 = new StringKey("pots");

            Assert.That(stringKey1.Equals(stringKey2), Is.False);
        }