Searched refs:Test (Results 1 - 25 of 98) sorted by relevance

1234

/frameworks/base/tests/StatusBar/src/com/android/statusbartest/
H A DStatusBarTest.java53 protected Test[] tests() {
68 private Test[] mTests = new Test[] {
69 new Test("toggle LOW_PROFILE (lights out)") {
79 new Test("toggle HIDE_NAVIGATION") {
90 new Test("clear SYSTEM_UI_FLAGs") {
96 // new Test("no setSystemUiVisibility") {
103 new Test("systemUiVisibility: STATUS_BAR_DISABLE_HOME") {
108 new Test("Double Remove") {
129 new Test("Hid
[all...]
H A DPowerTest.java44 protected Test[] tests() {
51 private Test[] mTests = new Test[] {
52 new Test("Enable settings widget") {
61 new Test("Disable settings widget") {
70 new Test("Enable proximity") {
75 new Test("Disable proximity") {
80 new Test("Disable proximity (WAIT_FOR_PROXIMITY_NEGATIVE)") {
85 new Test("Enable proximity, wait 5 seconds then disable") {
96 new Test("Enabl
[all...]
H A DToastTest.java53 protected Test[] tests() {
83 private Test[] mTests = new Test[] {
84 new Test("Read lights") {
94 new Test("Make Toast #1") {
101 new Test("Show Toast #1") {
108 new Test("Update Toast #1") {
118 new Test("Make Toast #2") {
125 new Test("Show Toast #2") {
132 new Test("Gravit
[all...]
H A DTestActivity.java38 Test[] mTests;
41 protected abstract Test[] tests();
43 abstract class Test { class in class:TestActivity
45 Test(String n) { method in class:TestActivity.Test
68 Test t = mTests[position];
69 Log.d(tag(), "Test: " + t.name);
H A DNotificationTestList.java84 protected Test[] tests() {
90 private Test[] mTests = new Test[] {
91 new Test("Off and sound") {
113 new Test("Cancel #1") {
120 new Test("Button") {
133 new Test("custom intent on text view") {
145 new Test("Ticker 1 line") {
155 new Test("No view") {
163 new Test("N
[all...]
/frameworks/base/test-runner/src/android/test/
H A DTestCaseUtil.java21 import junit.framework.Test;
44 public static List<String> getTestCaseNames(Test test, boolean flatten) {
45 List<Test> tests = (List<Test>) getTests(test, flatten);
47 for (Test aTest : tests) {
53 public static List<? extends Test> getTests(Test test, boolean flatten) {
57 private static List<? extends Test> getTests(Test test, boolean flatten,
59 List<Test> testCase
[all...]
/frameworks/testing/androidtestlib/tests/src/com/android/test/
H A DInstrumentationJUnit4Test.java23 import org.junit.Test;
37 @Test
/frameworks/testing/androidtestlib/tests/src/com/android/test/runner/
H A DTestLoaderTest.java22 import org.junit.Test;
38 @Test
61 @Test
66 @Test
71 @Test
76 @Test
83 @Test
H A DTestRequestBuilderTest.java24 import org.junit.Test;
39 @Test
43 @Test
51 @Test
55 @Test
64 * Test initial condition for size filtering - that all tests run when no filter is attached
66 @Test
77 * Test that size annotation filtering works
79 @Test
91 * Test tha
[all...]
/frameworks/compile/mclinker/unittests/
H A DHashTableTest.h23 class HashTableTest : public ::testing::Test
H A DLEB128Test.h22 class LEB128Test : public ::testing::Test
H A DTargetMachineTest.h22 class TargetMachineTest : public ::testing::Test
H A DBinTreeTest.h30 class BinTreeTest : public ::testing::Test
H A DFactoriesTest.h19 * \brief Test cases for factories - NodeFactory and MCLDFileFactory.
23 class FactoriesTest : public ::testing::Test
H A DFileHandleTest.h28 class FileHandleTest : public ::testing::Test
H A DFragmentRefTest.h25 * \brief Reference Test
29 class FragmentRefTest : public ::testing::Test
H A DFragmentTest.h28 class FragmentTest : public ::testing::Test
H A DLDSymbolTest.h26 class LDSymbolTest : public ::testing::Test
H A DMCRegionFragmentTest.h29 class MCRegionFragmentTest : public ::testing::Test
H A DMemoryAreaTest.h28 class MemoryAreaTest : public ::testing::Test
H A DNamePoolTest.h28 class NamePoolTest : public ::testing::Test
/frameworks/base/test-runner/tests/src/android/test/
H A DTestCaseUtilTest.java19 import junit.framework.Test;
47 Test test = TestCaseUtil.createTestSuite(OneTestTestCase.class);
52 Test test = TestCaseUtil.createTestSuite(TwoTestsInTestSuite.class);
57 Test test = TestCaseUtil.createTestSuite(OneTestTestCaseWithSuite.class);
71 public static Test suite() {
85 public static Test suite() {
93 public static Test suite() {
/frameworks/base/test-runner/tests/src/android/test/suitebuilder/
H A DListTestCaseNames.java19 import junit.framework.Test;
30 List<Test> tests = Collections.<Test>list(suite.tests());
32 for (Test test : tests) {
46 List<Test> tests = Collections.<Test>list(suite.tests());
48 for (Test test : tests) {
/frameworks/base/tools/layoutlib/create/tests/com/android/tools/layoutlib/create/
H A DLogTest.java23 import org.junit.Test;
39 @Test
45 mLog.debug("Test %d", 42);
49 mLog.debug("Test %d", 42);
51 assertEquals("Test 42\n", mLog.getOut());
55 @Test
60 mLog.info("Test %d", 43);
62 assertEquals("Test 43\n", mLog.getOut());
66 @Test
71 mLog.error("Test
[all...]
H A DRenameClassAdapterTest.java24 import org.junit.Test;
53 @Test
85 @Test
94 @Test
112 @Test

Completed in 546 milliseconds

1234