You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@taverna.apache.org by ia...@apache.org on 2015/06/10 16:06:45 UTC

[23/64] [abbrv] incubator-taverna-mobile git commit: Refactored package name for the test package to the global name suggested

Refactored package name for the test package to the global name suggested


Project: http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/commit/a784b919
Tree: http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/tree/a784b919
Diff: http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/diff/a784b919

Branch: refs/heads/master
Commit: a784b9195022cb82a367245736b6e17f87f53646
Parents: 13c9131
Author: larrytech7 <la...@gmail.com>
Authored: Fri Jun 5 21:46:54 2015 +0100
Committer: larrytech7 <la...@gmail.com>
Committed: Fri Jun 5 21:46:54 2015 +0100

----------------------------------------------------------------------
 .../mobile/tavernamobile/ApplicationTest.java   | 39 ++++++++++++++++++++
 1 file changed, 39 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/a784b919/app/src/androidTest/java/org/apache/taverna/mobile/tavernamobile/ApplicationTest.java
----------------------------------------------------------------------
diff --git a/app/src/androidTest/java/org/apache/taverna/mobile/tavernamobile/ApplicationTest.java b/app/src/androidTest/java/org/apache/taverna/mobile/tavernamobile/ApplicationTest.java
new file mode 100644
index 0000000..90680c6
--- /dev/null
+++ b/app/src/androidTest/java/org/apache/taverna/mobile/tavernamobile/ApplicationTest.java
@@ -0,0 +1,39 @@
+package org.apache.taverna.mobile.tavernamobile;
+
+/*
+* Apache Taverna Mobile
+* Copyright 2015 The Apache Software Foundation
+
+* This product includes software developed at
+* The Apache Software Foundation (http://www.apache.org/).
+
+* Licensed to the Apache Software Foundation (ASF) under one
+* or more contributor license agreements. See the NOTICE file
+* distributed with this work for additional information
+* regarding copyright ownership. The ASF licenses this file
+* to you 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.
+*/
+
+
+import android.app.Application;
+import android.test.ApplicationTestCase;
+
+/**
+ * <a href="http://d.android.com/tools/testing/testing_android.html">Testing Fundamentals</a>
+ */
+public class ApplicationTest extends ApplicationTestCase<Application> {
+    public ApplicationTest() {
+        super(Application.class);
+    }
+}
\ No newline at end of file