public void HashKeyValueCollection_KeyAddTwice() { var encoder = new HashKeyValueStore(); encoder.EncodeInt32("someInt", 123456); encoder.EncodeInt32("someInt", 123456); }
public void HashKeyValueCollection_TestCases() { var encoder = new HashKeyValueStore(); this.KeyValueEncoderTestCases(encoder); }
public void HashKeyValueCollection_KeyNotExist() { var encoder = new HashKeyValueStore(); encoder.DecodeInt32("someInt"); }