Welcome to mirror list, hosted at ThFree Co, Russian Federation.

AllTests.java « test « encoders « util « spongycastle « org « java « test « src « core - gitlab.com/quite/humla-spongycastle.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a31c5ad2c5b426650b5189bf6c83fc6efd229610 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package org.spongycastle.util.encoders.test;

import junit.framework.*;

public class AllTests
{
    public static void main (String[] args)
    {
        junit.textui.TestRunner.run (suite());
    }
    
    public static Test suite()
    {
        TestSuite suite = new TestSuite("encoder tests");
        suite.addTestSuite(Base64Test.class);
        suite.addTestSuite(UrlBase64Test.class);
        suite.addTestSuite(HexTest.class);
        return suite;
    }
}