summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/AndroidManifest.xml30
-rw-r--r--tests/proguard-project.txt20
-rw-r--r--tests/project.properties14
-rw-r--r--tests/src/org/xapek/andiodine/HelloJniTest.java22
-rw-r--r--tests/tests.iml26
5 files changed, 0 insertions, 112 deletions
diff --git a/tests/AndroidManifest.xml b/tests/AndroidManifest.xml
deleted file mode 100644
index 75082fb..0000000
--- a/tests/AndroidManifest.xml
+++ /dev/null
@@ -1,30 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- package name must be unique so suffix with "tests" so package loader doesn't ignore us -->
-<manifest xmlns:android="http://schemas.android.com/apk/res/android"
- package="org.xapek.andiodine.tests"
- android:versionCode="1"
- android:versionName="1.0" >
-
- <uses-sdk
- android:minSdkVersion="14"
- android:targetSdkVersion="16" />
-
- <!--
- We add an application tag here just so that we can indicate that
- this package needs to link against the android.test library,
- which is needed when building test cases.
- -->
- <application>
- <uses-library android:name="android.test.runner" />
- </application>
- <!--
- This declares that this application uses the instrumentation test runner targeting
- the package of com.example.HelloJni. To run the tests use the command:
- "adb shell am instrument -w com.example.HelloJni.tests/android.test.InstrumentationTestRunner"
- -->
- <instrumentation
- android:name="android.test.InstrumentationTestRunner"
- android:label="Tests for Andiodine"
- android:targetPackage="org.xapek.andiodine" />
-
-</manifest> \ No newline at end of file
diff --git a/tests/proguard-project.txt b/tests/proguard-project.txt
deleted file mode 100644
index f2fe155..0000000
--- a/tests/proguard-project.txt
+++ /dev/null
@@ -1,20 +0,0 @@
-# To enable ProGuard in your project, edit project.properties
-# to define the proguard.config property as described in that file.
-#
-# Add project specific ProGuard rules here.
-# By default, the flags in this file are appended to flags specified
-# in ${sdk.dir}/tools/proguard/proguard-android.txt
-# You can edit the include path and order by changing the ProGuard
-# include property in project.properties.
-#
-# For more details, see
-# http://developer.android.com/guide/developing/tools/proguard.html
-
-# Add any project specific keep options here:
-
-# If your project uses WebView with JS, uncomment the following
-# and specify the fully qualified class name to the JavaScript interface
-# class:
-#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
-# public *;
-#}
diff --git a/tests/project.properties b/tests/project.properties
deleted file mode 100644
index 9fb894d..0000000
--- a/tests/project.properties
+++ /dev/null
@@ -1,14 +0,0 @@
-# This file is automatically generated by Android Tools.
-# Do not modify this file -- YOUR CHANGES WILL BE ERASED!
-#
-# This file must be checked in Version Control Systems.
-#
-# To customize properties used by the Ant build system edit
-# "ant.properties", and override values to adapt the script to your
-# project structure.
-#
-# To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home):
-#proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt
-
-# Project target.
-target=android-3
diff --git a/tests/src/org/xapek/andiodine/HelloJniTest.java b/tests/src/org/xapek/andiodine/HelloJniTest.java
deleted file mode 100644
index 14322f3..0000000
--- a/tests/src/org/xapek/andiodine/HelloJniTest.java
+++ /dev/null
@@ -1,22 +0,0 @@
-package org.xapek.andiodine;
-
-import android.test.ActivityInstrumentationTestCase2;
-
-import org.xapek.andiodine.IodineMain;
-
-/**
- * This is a simple framework for a test of an Application. See
- * {@link android.test.ApplicationTestCase ApplicationTestCase} for more information on
- * how to write and extend Application tests.
- * <p/>
- * To run this test, you can type:
- * adb shell am instrument -w \
- * -e class org.xapek.andiodine.HelloJniTest \
- * com.example.HelloJni.tests/android.test.InstrumentationTestRunner
- */
-public class HelloJniTest extends ActivityInstrumentationTestCase2<org.xapek.andiodine.IodineMain> {
- public HelloJniTest() {
- super(IodineMain.class);
- }
-
-}
diff --git a/tests/tests.iml b/tests/tests.iml
deleted file mode 100644
index 6698b2b..0000000
--- a/tests/tests.iml
+++ /dev/null
@@ -1,26 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<module type="JAVA_MODULE" version="4">
- <component name="FacetManager">
- <facet type="android" name="Android">
- <configuration>
- <notImportedProperties>
- <property>MANIFEST_FILE_PATH</property>
- <property>RESOURCES_DIR_PATH</property>
- <property>ASSETS_DIR_PATH</property>
- <property>NATIVE_LIBS_DIR_PATH</property>
- </notImportedProperties>
- </configuration>
- </facet>
- </component>
- <component name="NewModuleRootManager" inherit-compiler-output="true">
- <exclude-output />
- <content url="file://$MODULE_DIR$">
- <sourceFolder url="file://$MODULE_DIR$/src" isTestSource="true" />
- <sourceFolder url="file://$MODULE_DIR$/gen" isTestSource="false" />
- </content>
- <orderEntry type="inheritedJdk" />
- <orderEntry type="sourceFolder" forTests="false" />
- <orderEntry type="module" module-name="andiodine" scope="PROVIDED" />
- </component>
-</module>
-