android.test.suitebuilder.TestSuiteBuilder Java Examples

The following examples show how to use android.test.suitebuilder.TestSuiteBuilder. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: BusTestSuite.java    From AndroidEventBus with Apache License 2.0 5 votes vote down vote up
public static Test suite() {
    return new TestSuiteBuilder(BusTestSuite.class)
            .includePackages(
                    "org.simple.eventbus.test.EventBusTest",
                    "org.simple.eventbus.test.EventTypeTest",
                    "org.simple.eventbus.test.ThreadModeTest",
                    "org.simple.eventbus.testDefaultMatchPolicyTest")
            .build();
}
 
Example #2
Source File: AntennaPodTestRunner.java    From AntennaPodSP with MIT License 5 votes vote down vote up
@Override
public TestSuite getAllTests() {
    return new TestSuiteBuilder(AntennaPodTestRunner.class).includeAllPackagesUnderHere()
            .excludePackages("instrumentationTest.de.test.antennapod.syndication.handler")
                    //        .excludePackages("instrumentationTest.de.test.antennapod.gpodnet")
            .build();
}
 
Example #3
Source File: ExtractorTest.java    From YouTube-In-Background with MIT License 4 votes vote down vote up
public static Test suite() {
    return new TestSuiteBuilder(ExtractorTest.class).includeAllPackagesUnderHere().build();
}
 
Example #4
Source File: FullTestSuite.java    From Advanced_Android_Development with Apache License 2.0 4 votes vote down vote up
public static Test suite() {
    return new TestSuiteBuilder(FullTestSuite.class)
            .includeAllPackagesUnderHere().build();
}
 
Example #5
Source File: search_AllTests.java    From android-tv-leanback with Apache License 2.0 4 votes vote down vote up
public static Test suite() {
    return new TestSuiteBuilder(search_AllTests.class)
            .includeAllPackagesUnderHere()
            .build();
}
 
Example #6
Source File: AllTests.java    From Storm with Apache License 2.0 4 votes vote down vote up
public static Test suite() {
    return new TestSuiteBuilder(AllTests.class)
            .includeAllPackagesUnderHere()
            .build();
}
 
Example #7
Source File: FullTestSuite.java    From MultiLevelExpandableIndentableListView with MIT License 4 votes vote down vote up
public static Test suite() {
    return new TestSuiteBuilder(FullTestSuite.class)
                    .includeAllPackagesUnderHere().build();
}
 
Example #8
Source File: FullTestSuite.java    From MonsterHunter4UDatabase with MIT License 4 votes vote down vote up
public static Test suite() {
    return new TestSuiteBuilder(FullTestSuite.class)
                    .includeAllPackagesUnderHere().build();
}
 
Example #9
Source File: DavidWebbAndroidTests.java    From DavidWebb with MIT License 4 votes vote down vote up
public static Test suite () {
    return new TestSuiteBuilder(DavidWebbAndroidTests.class).includeAllPackagesUnderHere().build();
}
 
Example #10
Source File: AllTests.java    From codeexamples-android with Eclipse Public License 1.0 4 votes vote down vote up
public static Test suite() {
    return new TestSuiteBuilder(AllTests.class)
            .includeAllPackagesUnderHere()
            .build();
}