Home
last modified time | relevance | path

Searched refs:TestMethod (Results 1 – 5 of 5) sorted by relevance

/cts/tools/cts-api-coverage/src/com/android/cts/apicoverage/
DCddCoverage.java41 public void addCoverage(String cddRequirementId, TestMethod testMethod) { in addCoverage()
51 private final List<TestMethod> mtestMethods;
81 public void addTestMethod(TestMethod testMethod) { in addTestMethod()
85 public Collection<TestMethod> getTestMethods() { in getTestMethods()
90 static class TestMethod { class in CddCoverage
95 TestMethod(String testModule, String testClass, String testMethod) { in TestMethod() method in CddCoverage.TestMethod
DCtsApiCoverage.java252 CddCoverage.TestMethod testMethod = in addCddJarCoverage()
253 new CddCoverage.TestMethod( in addCddJarCoverage()
298 CddCoverage.TestMethod testMethod = in handleAnnotations()
299 new CddCoverage.TestMethod( in handleAnnotations()
DXmlReport.java144 for (CddCoverage.TestMethod method : requirement.getTestMethods()) { in printXmlReport()
/cts/tools/utils/
DDescriptionGenerator.java425 void appendTestCases(Node elem, Collection<TestMethod> cases) { in appendTestCases()
430 for (TestMethod caze : cases) { in appendTestCases()
514 Collection<TestMethod> mCases;
522 TestClass(String name, Collection<TestMethod> cases) { in TestClass()
543 Collection<TestMethod> getTestMethods(ExpectationStore expectationStore, in getTestMethods()
547 ArrayList<TestMethod> cases = new ArrayList<TestMethod>(); in getTestMethods()
582 cases.add(new TestMethod( in getTestMethods()
636 static class TestMethod { class in DescriptionGenerator
653 TestMethod(String name, String description, String controller, Set<String> abis, in TestMethod() method in DescriptionGenerator.TestMethod
DCollectAllTests.java465 testClass = new TestClass(testClassName, new ArrayList<TestMethod>()); in addToTests()
469 testClass.mCases.add(new TestMethod(testName, "", "", supportedAbis, in addToTests()