Exemplo n.º 1
0
 public void GetDecodedTest()
 {
     char[] input = null;
     Base64Decoder target = new Base64Decoder(input);
     byte[] expected = null;
     byte[] actual;
     actual = target.GetDecoded();
     Assert.AreEqual(expected, actual);
 }
Exemplo n.º 2
0
 public void Base64DecoderConstructorTest()
 {
     char[] input = null;
     Base64Decoder target = new Base64Decoder(input);
     Assert.Inconclusive("TODO: Implement code to verify target");
 }