Home
last modified time | relevance | path

Searched refs:Test (Results 1 – 25 of 114) sorted by relevance

12345

/cts/tests/tests/uirendering/src/android/uirendering/cts/testclasses/
DFontRenderingTests.java33 import org.junit.Test;
69 @Test
76 @Test
83 @Test
90 @Test
97 @Test
104 @Test
112 @Test
119 @Test
126 @Test
[all …]
DExactCanvasTests.java31 import org.junit.Test;
37 @Test
50 @Test
65 @Test
80 @Test
93 @Test
105 @Test
120 @Test
127 @Test
141 @Test
[all …]
DBitmapFilterTests.java28 import org.junit.Test;
79 @Test
84 @Test
89 @Test
94 @Test
99 @Test
104 @Test
DViewClippingTests.java17 import org.junit.Test;
64 @Test
71 @Test
78 @Test
85 @Test
93 @Test
106 @Test
DCanvasStateTests.java25 import org.junit.Test;
38 @Test
53 @Test
83 @Test
101 @Test
DLayoutTests.java26 import org.junit.Test;
30 @Test
36 @Test
DInfrastructureTests.java31 import org.junit.Test;
36 @Test
49 @Test
71 @Test
/cts/apps/CtsVerifier/src/com/android/cts/verifier/screenpinning/
DScreenPinningTestActivity.java37 private Test[] mTests;
49 mTests = new Test[] { in onCreate()
147 private final Test mCheckStartedUnpinned = new Test(0) {
158 private final Test mCheckStartPinning = new Test(R.string.screen_pin_instructions) {
168 private final Test mCheckIsPinned = new Test(R.string.screen_pin_check_pinned) {
179 private final Test mCheckTryLeave = new Test(R.string.screen_pin_no_exit) {
190 private final Test mCheckUnpin = new Test(R.string.screen_pin_exit) {
201 private final Test mCheckUnpinFromCode = new Test(0) {
224 private final Test mDone = new Test(R.string.screen_pinning_done) {
231 private abstract class Test { class in ScreenPinningTestActivity
[all …]
/cts/tools/tradefed-host/src/com/android/cts/tradefed/result/
DTestCase.java40 Map<String, Test> mChildTestMap = new LinkedHashMap<String, Test>();
64 public Collection<Test> getTests() { in getTests()
73 public Test findTest(String testName, boolean insertIfMissing) { in findTest()
74 Test t = mChildTestMap.get(testName); in findTest()
76 t = new Test(testName); in findTest()
93 for (Test t : mChildTestMap.values()) { in serialize()
114 if (eventType == XmlPullParser.START_TAG && parser.getName().equals(Test.TAG)) { in parse()
115 Test test = new Test(); in parse()
139 for (Test test : mChildTestMap.values()) { in addTestsWithStatus()
157 for (Test test : mChildTestMap.values()) { in countTests()
/cts/tools/tradefed-host/tests/src/com/android/cts/tradefed/result/
DTestTest.java32 assertEquals(stack, Test.getFailureMessageFromStackTrace(stack)); in testGetFailureMessageFromStackTrace_empty()
40 assertEquals(stack, Test.getFailureMessageFromStackTrace(stack)); in testGetFailureMessageFromStackTrace_oneLine()
49 assertEquals(stack, Test.getFailureMessageFromStackTrace(stack)); in testGetFailureMessageFromStackTrace_oneNewLine()
57 assertEquals(stack, Test.getFailureMessageFromStackTrace(stack)); in testGetFailureMessageFromStackTrace_twoLines()
66 Test.getFailureMessageFromStackTrace(stack)); in testGetFailureMessageFromStackTrace_multiLines()
/cts/tools/cts-xml-generator/src/com/android/cts/xmlgenerator/
DTest.java19 public class Test implements Comparable<Test> { class
23 public Test(String name, int timeout) { in Test() method in Test
37 public int compareTo(Test another) { in compareTo()
DTestCase.java27 private final List<Test> mTests = new ArrayList<Test>();
38 mTests.add(new Test(testName, timeout)); in addTest()
41 public Collection<Test> getTests() { in getTests()
/cts/common/util/src/com/android/compatibility/common/util/
DTestSuiteFilter.java18 import junit.framework.Test;
62 private int countTests(Test test) { in countTests()
67 Enumeration<Test> enumerator = suite.tests(); in countTests()
83 public void runTest(Test test, TestResult result) { in runTest()
87 private void runTests(Test test, TestResult result) { in runTests()
92 Enumeration<Test> enumerator = suite.tests(); in runTests()
101 private boolean shouldRun(Test test) { in shouldRun()
/cts/apps/CtsVerifier/src/com/android/cts/verifier/location/base/
DGnssCtsTestSuite.java19 import junit.framework.Test;
47 public void addTest(Test test) { in addTest()
62 public void runTest(Test test, TestResult testResult) { in runTest()
72 public Test testAt(int index) { in testAt()
82 public Enumeration<Test> tests() { in tests()
DGnssCtsTestResult.java21 import junit.framework.Test;
50 public void addError(Test test, Throwable throwable) { in addError()
55 public void addFailure(Test test, AssertionFailedError assertionFailedError) { in addFailure()
70 public void endTest(Test test) { in endTest()
100 public void runProtected(Test test, Protectable protectable) { in runProtected()
121 public void startTest(Test test) { in startTest()
/cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/base/
DSensorCtsTestSuite.java19 import junit.framework.Test;
47 public void addTest(Test test) { in addTest()
62 public void runTest(Test test, TestResult testResult) { in runTest()
72 public Test testAt(int index) { in testAt()
82 public Enumeration<Test> tests() { in tests()
DSensorCtsTestResult.java21 import junit.framework.Test;
52 public void addError(Test test, Throwable throwable) { in addError()
57 public void addFailure(Test test, AssertionFailedError assertionFailedError) { in addFailure()
72 public void endTest(Test test) { in endTest()
102 public void runProtected(Test test, Protectable protectable) { in runProtected()
123 public void startTest(Test test) { in startTest()
/cts/hostsidetests/appsecurity/test-apps/UsePermissionApp23/src/com/android/cts/usepermission/
DUsePermissionTest23.java31 import org.junit.Test;
43 @Test
48 @Test
61 @Test
75 @Test
123 @Test
155 @Test
190 @Test
216 @Test
250 @Test
[all …]
/cts/apps/CtsVerifier/src/com/android/cts/verifier/bluetooth/
DTestAdapter.java35 List<Test> tests;
38 private class Test { class in TestAdapter
42 protected Test(int instructions) { in Test() method in TestAdapter.Test
51 this.tests = new ArrayList<Test>(); in TestAdapter()
53 this.tests.add(new Test(t)); in TestAdapter()
86 Test test = tests.get(position); in getView()
/cts/tests/tests/graphics/src/android/graphics/cts/
DOutlineTest.java23 import org.junit.Test;
31 @Test
42 @Test
62 @Test
89 @Test
118 @Test
140 @Test
154 @Test
174 @Test
/cts/tools/dex-tools/test/dex/reader/
DDexFileReaderTests.java31 import org.junit.Test;
53 @Test
80 @Test
133 @Test
148 @Test
172 @Test
193 @Test
215 @Test
240 @Test
270 @Test
[all …]
/cts/tools/tradefed-host/src/com/android/cts/tradefed/testtype/
DJarHostTest.java37 import junit.framework.Test;
52 public class JarHostTest implements IDeviceTest, IRemoteTest, IBuildReceiver, Test {
193 Test junitTest = loadTest(testId.getClassName(), testId.getTestName()); in run()
203 … private void runTest(TestIdentifier testId, final Test junitTest, final TestResult junitResult) { in runTest()
233 private final Test mJunitTest;
237 TestRunnable(Test junitTest, TestResult junitResult) { in TestRunnable()
275 private Test loadTest(String className, String testName) { in loadTest()
285 } else if (Test.class.isAssignableFrom(testClass)) { in loadTest()
286 Test test = (Test)testClass.newInstance(); in loadTest()
/cts/tests/core/runner/src/com/android/cts/core/runner/support/
DTestNgRunnerBuilder.java27 import org.testng.annotations.Test;
57 if (cls.getAnnotation(Test.class) != null) { in isTestNgTestClass()
63 if (m.getAnnotation(Test.class) != null) { in isTestNgTestClass()
/cts/tests/jdwp/runner/device-side/src/com/android/compatibility/dalvik/
DDalvikTestRunner.java25 import junit.framework.Test;
109 Enumeration<Test> tests = suite.tests(); in collectTests()
111 Test test = tests.nextElement(); in collectTests()
122 private static boolean shouldCollect(Test test, Set<String> includes, Set<String> excludes) { in shouldCollect()
209 return (Test.class.isAssignableFrom(cls)
239 public void startTest(Test test) {
247 public void endTest(Test test) {
255 public void addFailure(Test test, AssertionFailedError error) {
263 public void addError(Test test, Throwable error) {
267 private String getId(Test test) {
/cts/tests/tests/util/assets/
DIntegrate.jarMETA-INF/MANIFEST.MF META-INF/TESTROOT.SF META-INF/TESTROOT ...

12345