aboutsummaryrefslogtreecommitdiff
path: root/testapps/testProjectTest/testapp/src/com/android/tests/testprojecttest
diff options
context:
space:
mode:
Diffstat (limited to 'testapps/testProjectTest/testapp/src/com/android/tests/testprojecttest')
-rw-r--r--testapps/testProjectTest/testapp/src/com/android/tests/testprojecttest/lib/LibActivityTest.java72
-rw-r--r--testapps/testProjectTest/testapp/src/com/android/tests/testprojecttest/test/AllTests.java53
2 files changed, 0 insertions, 125 deletions
diff --git a/testapps/testProjectTest/testapp/src/com/android/tests/testprojecttest/lib/LibActivityTest.java b/testapps/testProjectTest/testapp/src/com/android/tests/testprojecttest/lib/LibActivityTest.java
deleted file mode 100644
index 9be6f97d2..000000000
--- a/testapps/testProjectTest/testapp/src/com/android/tests/testprojecttest/lib/LibActivityTest.java
+++ /dev/null
@@ -1,72 +0,0 @@
-/*
- * Copyright (C) 2008 The Android Open Source Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-package com.android.tests.testprojecttest.lib;
-
-import android.test.ActivityInstrumentationTestCase2;
-import android.test.suitebuilder.annotation.MediumTest;
-import android.widget.TextView;
-
-import com.android.tests.testprojecttest.app.R;
-
-/**
- * An example of an {@link ActivityInstrumentationTestCase2} of a specific activity {@link Focus2}.
- * By virtue of extending {@link ActivityInstrumentationTestCase2}, the target activity is automatically
- * launched and finished before and after each test. This also extends
- * {@link android.test.InstrumentationTestCase}, which provides
- * access to methods for sending events to the target activity, such as key and
- * touch events. See {@link #sendKeys}.
- *
- * In general, {@link android.test.InstrumentationTestCase}s and {@link ActivityInstrumentationTestCase2}s
- * are heavier weight functional tests available for end to end testing of your
- * user interface. When run via a {@link android.test.InstrumentationTestRunner},
- * the necessary {@link android.app.Instrumentation} will be injected for you to
- * user via {@link #getInstrumentation} in your tests.
- *
- * See {@link com.example.android.apis.AllTests} for documentation on running
- * all tests and individual tests in this application.
- */
-public class LibActivityTest extends ActivityInstrumentationTestCase2<LibActivity> {
-
- private TextView mTextView;
-
- /**
- * Creates an {@link ActivityInstrumentationTestCase2} that tests the {@link Focus2} activity.
- */
- public LibActivityTest() {
- super(LibActivity.class);
- }
-
- @Override
- protected void setUp() throws Exception {
- super.setUp();
- final LibActivity a = getActivity();
- // ensure a valid handle to the activity has been returned
- assertNotNull(a);
- mTextView = (TextView) a.findViewById(R.id.text);
- }
-
- /**
- * The name 'test preconditions' is a convention to signal that if this
- * test doesn't pass, the test case was not set up properly and it might
- * explain any and all failures in other tests. This is not guaranteed
- * to run before other tests, as junit uses reflection to find the tests.
- */
- @MediumTest
- public void testPreconditions() {
- assertNotNull(mTextView);
- }
-}
diff --git a/testapps/testProjectTest/testapp/src/com/android/tests/testprojecttest/test/AllTests.java b/testapps/testProjectTest/testapp/src/com/android/tests/testprojecttest/test/AllTests.java
deleted file mode 100644
index a77b53ce8..000000000
--- a/testapps/testProjectTest/testapp/src/com/android/tests/testprojecttest/test/AllTests.java
+++ /dev/null
@@ -1,53 +0,0 @@
-/*
- * Copyright (C) 2008 The Android Open Source Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-package com.android.tests.testprojecttest.test;
-
-import junit.framework.Test;
-import junit.framework.TestSuite;
-
-import android.test.suitebuilder.TestSuiteBuilder;
-
-/**
- * A test suite containing all tests for ApiDemos.
- *
- * To run all suites found in this apk:
- * $ adb shell am instrument -w \
- * com.example.android.apis.tests/android.test.InstrumentationTestRunner
- *
- * To run just this suite from the command line:
- * $ adb shell am instrument -w \
- * -e class com.example.android.apis.AllTests \
- * com.example.android.apis.tests/android.test.InstrumentationTestRunner
- *
- * To run an individual test case, e.g. {@link com.example.android.apis.os.MorseCodeConverterTest}:
- * $ adb shell am instrument -w \
- * -e class com.example.android.apis.os.MorseCodeConverterTest \
- * com.example.android.apis.tests/android.test.InstrumentationTestRunner
- *
- * To run an individual test, e.g. {@link com.example.android.apis.os.MorseCodeConverterTest#testCharacterS()}:
- * $ adb shell am instrument -w \
- * -e class com.example.android.apis.os.MorseCodeConverterTest#testCharacterS \
- * com.example.android.apis.tests/android.test.InstrumentationTestRunner
- */
-public class AllTests extends TestSuite {
-
- public static Test suite() {
- return new TestSuiteBuilder(AllTests.class)
- .includeAllPackagesUnderHere()
- .build();
- }
-}