summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorChirayu Desai <chirayudesai1@gmail.com>2012-08-02 12:23:05 +0530
committerChirayu Desai <chirayudesai1@gmail.com>2012-08-02 12:32:27 +0530
commit4ca067e55ce5c0e756bce8cb11496589b8ab3ea0 (patch)
tree720e310c94e1f32cc50893461147e6eb18c4ae6d /tests
parent262635a1a417326a4db253e0f06b9056670a8d33 (diff)
downloadandroid_packages_apps_Trebuchet-4ca067e55ce5c0e756bce8cb11496589b8ab3ea0.tar.gz
android_packages_apps_Trebuchet-4ca067e55ce5c0e756bce8cb11496589b8ab3ea0.tar.bz2
android_packages_apps_Trebuchet-4ca067e55ce5c0e756bce8cb11496589b8ab3ea0.zip
Rename Launcher to Trebuchet
Launcher2 is now Trebuchet application_name removed from localized strings and made un-translatable com.android.launcher is now com.cyanogenmod.trebuchet
Diffstat (limited to 'tests')
-rw-r--r--tests/stress/Android.mk4
-rw-r--r--tests/stress/AndroidManifest.xml2
-rw-r--r--tests/stress/src/com/cyanogenmod/trebuchet/stress/LauncherRotationStressTest.java (renamed from tests/stress/src/com/android/launcher2/stress/LauncherRotationStressTest.java)8
3 files changed, 7 insertions, 7 deletions
diff --git a/tests/stress/Android.mk b/tests/stress/Android.mk
index 68289bd3e..4678f677d 100644
--- a/tests/stress/Android.mk
+++ b/tests/stress/Android.mk
@@ -22,10 +22,10 @@ LOCAL_JAVA_LIBRARIES := android.test.runner
LOCAL_SRC_FILES := $(call all-java-files-under, src)
-LOCAL_PACKAGE_NAME := LauncherRotationStressTest
+LOCAL_PACKAGE_NAME := TrebuchetRotationStressTest
LOCAL_CERTIFICATE := shared
-LOCAL_INSTRUMENTATION_FOR := Launcher2
+LOCAL_INSTRUMENTATION_FOR := Trebuchet
include $(BUILD_PACKAGE)
diff --git a/tests/stress/AndroidManifest.xml b/tests/stress/AndroidManifest.xml
index 0df3a9da3..71c9e7afd 100644
--- a/tests/stress/AndroidManifest.xml
+++ b/tests/stress/AndroidManifest.xml
@@ -24,6 +24,6 @@
<instrumentation
android:name="android.test.InstrumentationTestRunner"
android:targetPackage="com.android.launcher"
- android:label="Rotation stress test using Launcher2">
+ android:label="Rotation stress test using Trebuchet">
</instrumentation>
</manifest>
diff --git a/tests/stress/src/com/android/launcher2/stress/LauncherRotationStressTest.java b/tests/stress/src/com/cyanogenmod/trebuchet/stress/LauncherRotationStressTest.java
index d21fd53ba..e2ced63a6 100644
--- a/tests/stress/src/com/android/launcher2/stress/LauncherRotationStressTest.java
+++ b/tests/stress/src/com/cyanogenmod/trebuchet/stress/LauncherRotationStressTest.java
@@ -14,10 +14,10 @@
* limitations under the License.
*/
-package com.android.launcher2.stress;
+package com.cyanogenmod.trebuchet.stress;
-import com.android.launcher2.Launcher;
+import com.cyanogenmod.trebuchet.Launcher;
import android.content.pm.ActivityInfo;
import android.os.SystemClock;
@@ -26,13 +26,13 @@ import android.test.RepetitiveTest;
import android.util.Log;
/**
- * Run rotation stress test using Launcher2 for 50 iterations.
+ * Run rotation stress test using Trebuchet for 50 iterations.
*/
public class LauncherRotationStressTest extends ActivityInstrumentationTestCase2<Launcher> {
private static final int NUM_ITERATIONS = 50;
private static final int WAIT_TIME_MS = 500;
- private static final String LOG_TAG = "LauncherRotationStressTest";
+ private static final String LOG_TAG = "TrebuchetRotationStressTest";
public LauncherRotationStressTest() {
super(Launcher.class);