summaryrefslogtreecommitdiff
path: root/src/instrumentationTest/de/test/antennapod/AntennaPodTestRunner.java
blob: 35ecf86dc201dcd0c5c4ddec36689c482e711d2f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package instrumentationTest.de.test.antennapod;

import android.test.InstrumentationTestRunner;
import android.test.suitebuilder.TestSuiteBuilder;
import android.util.Log;

import instrumentationTest.de.test.antennapod.service.download.HttpDownloaderTest;
import instrumentationTest.de.test.antennapod.util.FilenameGeneratorTest;
import junit.framework.TestSuite;

public class AntennaPodTestRunner extends InstrumentationTestRunner {

    @Override
    public TestSuite getAllTests() {
        return new TestSuiteBuilder(AntennaPodTestRunner.class).includePackages("instrumentationTest.de.test.antennapod.storage")
                //.includeAllPackagesUnderHere()
        //        .excludePackages("instrumentationTest.de.test.antennapod.syndication.handler")
        //        .excludePackages("instrumentationTest.de.test.antennapod.gpodnet")
                .build();
    }
}