Example #1
0
        public void op_Compare_EntityTag_EntityTag()
        {
            const long expected = 0;
            var        actual   = EntityTag.Compare(_jigsawEtag, _jigsawEtag);

            Assert.Equal(expected, actual);
        }
Example #2
0
        public void op_Compare_EntityTagJigsaw_EntityTagEmpty()
        {
            const long expected = -1;
            var        actual   = EntityTag.Compare(_jigsawEtag, _emptyEtag);

            Assert.Equal(expected, actual);
        }