android.test.suitebuilder.TestSuiteBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of android-test Show documentation
Show all versions of android-test Show documentation
A library jar that provides APIs for testing Applications written for the Google Android Platform.
The newest version!
package android.test.suitebuilder;
public class TestSuiteBuilder
{
public static class FailedToCreateTests
extends junit.framework.TestCase
{
public FailedToCreateTests(java.lang.Exception exception) { throw new RuntimeException("Stub!"); }
public void testSuiteConstructionFailed() { throw new RuntimeException("Stub!"); }
}
public TestSuiteBuilder(java.lang.Class clazz) { throw new RuntimeException("Stub!"); }
public TestSuiteBuilder(java.lang.String name, java.lang.ClassLoader classLoader) { throw new RuntimeException("Stub!"); }
public android.test.suitebuilder.TestSuiteBuilder includePackages(java.lang.String... packageNames) { throw new RuntimeException("Stub!"); }
public android.test.suitebuilder.TestSuiteBuilder excludePackages(java.lang.String... packageNames) { throw new RuntimeException("Stub!"); }
public android.test.suitebuilder.TestSuiteBuilder addRequirements(java.util.List> predicates) { throw new RuntimeException("Stub!"); }
public final android.test.suitebuilder.TestSuiteBuilder includeAllPackagesUnderHere() { throw new RuntimeException("Stub!"); }
public android.test.suitebuilder.TestSuiteBuilder named(java.lang.String newSuiteName) { throw new RuntimeException("Stub!"); }
public final junit.framework.TestSuite build() { throw new RuntimeException("Stub!"); }
protected java.lang.String getSuiteName() { throw new RuntimeException("Stub!"); }
public final android.test.suitebuilder.TestSuiteBuilder addRequirements(com.android.internal.util.Predicate... predicates) { throw new RuntimeException("Stub!"); }
}