HomeSort by relevance Sort by last modified time
    Searched refs:TestGrouping (Results 1 - 3 of 3) sorted by null

  /frameworks/base/test-runner/tests/src/android/test/suitebuilder/
TestGroupingTest.java 24 * Unit tests for {@link TestGrouping}
28 private TestGrouping mGrouping;
33 mGrouping = new TestGrouping(TestGrouping.SORT_BY_SIMPLE_NAME);
  /frameworks/base/test-runner/src/android/test/suitebuilder/
TestGrouping.java 43 * {@link TestGrouping} will have only one root package, but this is not a requirement.
47 public class TestGrouping {
49 private static final String LOG_TAG = "TestGrouping";
62 public TestGrouping(Comparator<Class<? extends TestCase>> comparator) {
96 TestGrouping other = (TestGrouping) o;
113 * @return The {@link TestGrouping} for method chaining.
115 public TestGrouping addPackagesRecursive(String... packageNames) {
135 * @return The {@link TestGrouping} for method chaining.
137 public TestGrouping removePackagesRecursive(String... packageNames)
    [all...]
TestSuiteBuilder.java 25 import static android.test.suitebuilder.TestGrouping.SORT_BY_FULLY_QUALIFIED_NAME;
47 private final TestGrouping testGrouping = new TestGrouping(SORT_BY_FULLY_QUALIFIED_NAME);
69 this.testGrouping.setClassLoader(classLoader);
102 testGrouping.addPackagesRecursive(packageNames);
113 testGrouping.removePackagesRecursive(packageNames);
182 for (TestMethod test : testGrouping.getTests()) {
247 protected TestGrouping getTestGrouping() {
248 return testGrouping;
    [all...]

Completed in 1462 milliseconds