Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit cf79c056 authored by Mark Harman's avatar Mark Harman
Browse files

New suite for running arbitrary set of tests.

parent 5f65256e
Loading
Loading
Loading
Loading
+15 −0
Original line number Diff line number Diff line
package net.sourceforge.opencamera.test;

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

public class TempTests {
    // Dummy test suite for running an arbitrary subset of tests.
    public static Test suite() {
        TestSuite suite = new TestSuite(MainTests.class.getName());

        //suite.addTest(TestSuite.createTest(MainActivityTest.class, "testZoom"));

        return suite;
    }
}