public void Decode_WithLabel_BadPattern() { Assert.Throws <FormatException>(() => { ShortGuidString.Decode("Cheesecake " + EncodedShort + "a"); }); Assert.Throws <FormatException>(() => { ShortGuidString.Decode("Cheesecake *asdf"); }); }
public void Decode_WithoutLabel_Legacy() { Assert.Equal(Raw, ShortGuidString.Decode(EncodedLegacy)); }
public void Decode_WithLabel_Legacy() { Assert.Equal(Raw, ShortGuidString.Decode("Cheesecake " + EncodedLegacy)); }
public void Decode_WithoutLabel_Short() { Assert.Equal(Raw, ShortGuidString.Decode(EncodedShort)); }