Exemplo n.º 1
0
 public void TestPadBase64StringException(string input, Type type)
 {
     Assert.Throws(type, () =>
     {
         TokenUtils.PadBase64String(input);
     });
 }
Exemplo n.º 2
0
 public void TestPadBase64String(string input, string expected)
 {
     Assert.Equal(expected, TokenUtils.PadBase64String(input));
 }