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

Test.java « test « util « spongycastle « org « java « main « src « core - gitlab.com/quite/humla-spongycastle.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 50a9f2e2c01fdbe60ef3e3937a5f06d878bbf82c (plain)
1
2
3
4
5
6
7
8
package org.spongycastle.util.test;

public interface Test
{
    String getName();

    TestResult perform();
}