コード例 #1
0
        public void TestMatches()
        {
            var matches1 = _provider.Matches(Bytes1, Bytes2);
            var matches2 = _provider.Matches(Bytes1, Bytes1);
            var matches3 = _provider.Matches(Bytes2, Bytes2);

            Assert.IsFalse(matches1);
            Assert.IsTrue(matches2);
            Assert.IsTrue(matches3);
        }