aboutsummaryrefslogtreecommitdiff
path: root/src/cz/crcs/ectester/standalone/test/StandaloneTestSuite.java
blob: 5682cd590a199e7d46ebaf3800b6e23fde80c5de (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
package cz.crcs.ectester.standalone.test;

import cz.crcs.ectester.common.cli.TreeCommandLine;
import cz.crcs.ectester.common.test.TestSuite;
import cz.crcs.ectester.data.EC_Store;
import cz.crcs.ectester.standalone.ECTesterStandalone;

import java.security.NoSuchAlgorithmException;

/**
 * @author Jan Jancar johny@neuromancer.sk
 */
public abstract class StandaloneTestSuite extends TestSuite {
    TreeCommandLine cli;
    ECTesterStandalone.Config cfg;

    public StandaloneTestSuite(EC_Store dataStore, ECTesterStandalone.Config cfg, TreeCommandLine cli, String name, String description) {
        super(dataStore, name, description);
        this.cfg = cfg;
        this.cli = cli;
    }

    public abstract void setup() throws NoSuchAlgorithmException;
}