|
Build 1.0_r1(from source) | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectandroid.test.suitebuilder.TestSuiteBuilder
public class TestSuiteBuilder
Build suites based on a combination of included packages, excluded packages, and predicates that must be satisfied.
| Nested Class Summary | |
|---|---|
static class |
TestSuiteBuilder.FailedToCreateTests
A special TestCase used to indicate a failure during the build()
step. |
| Constructor Summary | |
|---|---|
TestSuiteBuilder(Class clazz)
The given name is automatically prefixed with the package containing the tests to be run. |
|
TestSuiteBuilder(String name,
ClassLoader classLoader)
|
|
| Method Summary | |
|---|---|
TestSuiteBuilder |
addRequirements(List<com.android.internal.util.Predicate<TestMethod>> predicates)
Exclude tests that fail to satisfy all of the given predicates. |
TestSuiteBuilder |
addRequirements(com.android.internal.util.Predicate<TestMethod>... predicates)
Exclude tests that fail to satisfy all of the given predicates. |
TestSuite |
build()
Call this method once you've configured your builder as desired. |
TestSuiteBuilder |
excludePackages(String... packageNames)
Exclude all tests in the given packages and all sub-packages, unless otherwise specified. |
protected String |
getSuiteName()
Subclasses use this method to determine the name of the suite. |
protected TestGrouping |
getTestGrouping()
|
TestSuiteBuilder |
includeAllPackagesUnderHere()
Include all junit tests that satisfy the requirements in the calling class' package and all sub-packages. |
TestSuiteBuilder |
includePackages(String... packageNames)
Include all tests that satisfy the requirements in the given packages and all sub-packages, unless otherwise specified. |
TestSuiteBuilder |
named(String newSuiteName)
Override the default name for the suite being built. |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public TestSuiteBuilder(Class clazz)
clazz - Use the class from your .apk. Use the class name for the test suite name.
Use the class' classloader in order to load classes for testing.
This is needed when running in the emulator.
public TestSuiteBuilder(String name,
ClassLoader classLoader)
| Method Detail |
|---|
public TestSuiteBuilder includePackages(String... packageNames)
packageNames - Names of packages to add.
public TestSuiteBuilder excludePackages(String... packageNames)
packageNames - Names of packages to remove.
public TestSuiteBuilder addRequirements(List<com.android.internal.util.Predicate<TestMethod>> predicates)
predicates - Predicates to add to the list of requirements.
public final TestSuiteBuilder includeAllPackagesUnderHere()
public TestSuiteBuilder named(String newSuiteName)
addRequirements(com.android.internal.util.Predicate[]) to make it clear which
tests will be included. The name you specify is automatically prefixed with the package
containing the tests to be run. If more than one package is specified, the first is used.
newSuiteName - Prefix of name to give the suite being built.
public final TestSuite build()
protected String getSuiteName()
public final TestSuiteBuilder addRequirements(com.android.internal.util.Predicate<TestMethod>... predicates)
named(String) to override the default suite name.
predicates - Predicates to add to the list of requirements.
protected TestGrouping getTestGrouping()
|
Build 1.0_r1(from source) | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||