Exemple #1
0
        public void HashKeyValueCollection_KeyAddTwice()
        {
            var encoder = new HashKeyValueStore();

            encoder.EncodeInt32("someInt", 123456);
            encoder.EncodeInt32("someInt", 123456);
        }
Exemple #2
0
        public void HashKeyValueCollection_TestCases()
        {
            var encoder = new HashKeyValueStore();

            this.KeyValueEncoderTestCases(encoder);
        }
Exemple #3
0
        public void HashKeyValueCollection_KeyNotExist()
        {
            var encoder = new HashKeyValueStore();

            encoder.DecodeInt32("someInt");
        }