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

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

import junit.framework.Test;
import junit.framework.TestCase;
import junit.framework.TestSuite;

public class AllTests
    extends TestCase
{
    public static void main(String[] args)
    {
        junit.textui.TestRunner.run(suite());
    }

    public static Test suite()
    {
        TestSuite suite = new TestSuite("JPKAE Engine Tests");

        suite.addTestSuite(JPAKEParticipantTest.class);
        suite.addTestSuite(JPAKEPrimeOrderGroupTest.class);
        suite.addTestSuite(JPAKEUtilTest.class);

        return suite;
    }
}