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

1234

/frameworks/compile/mclinker/templates/
H A DimplTest.cpp10 #include "${class_name}Test.h"
17 ${class_name}Test::${class_name}Test() function
24 ${class_name}Test::~${class_name}Test() function
30 void ${class_name}Test::SetUp()
35 void ${class_name}Test::TearDown()
44 TEST_F( ${class_name}Test, name of the testcase for ${class_name} ) {
H A DheaderTest.h23 /** \class ${class_name}Test
28 class ${class_name}Test : public ::testing::Test class in namespace:mcldtest
32 ${class_name}Test();
35 virtual ~${class_name}Test();
/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/base/tests/StatusBar/src/com/android/statusbartest/
H A DStatusBarTest.java67 protected Test[] tests() {
82 private Test[] mTests = new Test[] {
83 new Test("toggle LOW_PROFILE (lights out)") {
93 new Test("toggle HIDE_NAVIGATION") {
104 new Test("clear SYSTEM_UI_FLAGs") {
110 // new Test("no setSystemUiVisibility") {
117 new Test("systemUiVisibility: STATUS_BAR_DISABLE_HOME") {
122 new Test("Double Remove") {
143 new Test("Hid
[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 DPowerTest.java63 protected Test[] tests() {
70 private Test[] mTests = new Test[] {
71 new Test("Enable settings widget") {
80 new Test("Disable settings widget") {
89 new Test("Enable proximity") {
94 new Test("Disable proximity") {
99 new Test("Disable proximity (WAIT_FOR_PROXIMITY_NEGATIVE)") {
104 new Test("Touch events don't poke") {
115 new Test("Touc
[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.java83 protected Test[] tests() {
89 private Test[] mTests = new Test[] {
90 new Test("Off and sound") {
112 new Test("Cancel #1") {
119 new Test("Button") {
132 new Test("custom intent on text view") {
144 new Test("Ticker 1 line") {
154 new Test("No view") {
162 new Test("N
[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 DUniqueGCFactoryBaseTest.h23 class UniqueGCFactoryBaseTest : 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 DLDSymbolTest.h26 class LDSymbolTest : public ::testing::Test
H A DMCFragmentRefTest.h25 * \brief Reference Test
29 class MCFragmentRefTest : public ::testing::Test
H A DMCRegionFragmentTest.h29 class MCRegionFragmentTest : public ::testing::Test
H A DMemoryAreaTest.h28 class MemoryAreaTest : public ::testing::Test
H A DPathSetTest.h28 class PathSetTest : public ::testing::Test
H A DPathTest.h23 class PathTest : public ::testing::Test
H A DStaticResolverTest.h29 class StaticResolverTest : 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 182 milliseconds

1234