summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason Zaugg <jzaugg@gmail.com>2013-11-28 10:48:04 -0800
committerJason Zaugg <jzaugg@gmail.com>2013-11-28 10:48:04 -0800
commit6ff3c3fd6a238391d0c82599e25731c708bf0e03 (patch)
tree247f0196e05de2a3314f310debe4d91e4c80a3ef
parentc1e79be1ad693c6fb71c4e4185f2374046a926ec (diff)
parent158c76ada5b02fe844401b0d98c4a3fc9bc0a238 (diff)
downloadscala-6ff3c3fd6a238391d0c82599e25731c708bf0e03.tar.gz
scala-6ff3c3fd6a238391d0c82599e25731c708bf0e03.tar.bz2
scala-6ff3c3fd6a238391d0c82599e25731c708bf0e03.zip
Merge pull request #3201 from adriaanm/test-rm-android
Remove unused android tests.
-rw-r--r--test/files/android/HelloAndroid.scala16
-rw-r--r--test/files/android/HelloAndroid.xml11
2 files changed, 0 insertions, 27 deletions
diff --git a/test/files/android/HelloAndroid.scala b/test/files/android/HelloAndroid.scala
deleted file mode 100644
index 9fd145a4f1..0000000000
--- a/test/files/android/HelloAndroid.scala
+++ /dev/null
@@ -1,16 +0,0 @@
-//package examples.hello3
-
-import android.app.Activity
-import android.os.Bundle
-import android.widget.TextView
-
-//class HelloAndroid extends Activity {
-class Test extends Activity {
- /** Called when the activity is first created. */
- override def onCreate(icicle: Bundle) {
- super.onCreate(icicle)
- val tv = new TextView(this)
- tv setText "Hello, Android (Scala)"
- setContentView(tv)
- }
-}
diff --git a/test/files/android/HelloAndroid.xml b/test/files/android/HelloAndroid.xml
deleted file mode 100644
index 41907b16a3..0000000000
--- a/test/files/android/HelloAndroid.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<manifest xmlns:android="http://schemas.android.com/apk/res/android"
- package="">
- <application>
- <activity class="HelloAndroid" android:label="HelloAndroid">
- <intent-filter>
- <action android:value="android.intent.action.MAIN" />
- <category android:value="android.intent.category.LAUNCHER" />
- </intent-filter>
- </activity>
- </application>
-</manifest>