DigestTest.java
00001 package edu.virtualschool.jco.test;
00002
00003 import junit.framework.TestCase;
00004
00005 public class DigestTest extends TestCase
00006 {
00007 String testString = "test";
00008 byte[] testBytes = testString.getBytes();
00009
00010 public static void main(String[] args)
00011 {
00012 junit.textui.TestRunner.run(DigestTest.class);
00013 }
00018 public DigestTest(String arg0)
00019 {
00020 super(arg0);
00021 }
00022 public void testDigestByteArray()
00023 {
00024 }
00025 public void testDigestbyteArrayArray()
00026 {
00027 }
00028 public void testGetBytes()
00029 {
00030 }
00031 public void testEncode()
00032 {
00033 }
00034 }