From 5c4fa213d1ef35ebc262336a47bece585a129419 Mon Sep 17 00:00:00 2001 From: Joe Bowser Date: Mon, 15 Jul 2013 14:08:54 -0700 Subject: [PATCH] CB-4230: We test Cordova, not jQuery Mobile --- test/AndroidManifest.xml | 10 --- .../org/apache/cordova/test/JQMTabTest.java | 75 ------------------- .../test/actions/jqmtabbackbutton.java | 30 -------- 3 files changed, 115 deletions(-) delete mode 100644 test/src/org/apache/cordova/test/JQMTabTest.java delete mode 100755 test/src/org/apache/cordova/test/actions/jqmtabbackbutton.java diff --git a/test/AndroidManifest.xml b/test/AndroidManifest.xml index 5c679ea7..878dd256 100755 --- a/test/AndroidManifest.xml +++ b/test/AndroidManifest.xml @@ -155,16 +155,6 @@ - - - - - - { - - private Instrumentation mInstr; - private jqmtabbackbutton testActivity; - private FrameLayout containerView; - private LinearLayout innerContainer; - private CordovaWebView testView; - private Purity touchTool; - - public JQMTabTest() - { - super("org.apache.cordova.test.activity", jqmtabbackbutton.class); - } - - protected void setUp() throws Exception { - super.setUp(); - mInstr = this.getInstrumentation(); - testActivity = this.getActivity(); - containerView = (FrameLayout) testActivity.findViewById(android.R.id.content); - innerContainer = (LinearLayout) containerView.getChildAt(0); - testView = (CordovaWebView) innerContainer.getChildAt(0); - touchTool = new Purity(testActivity, getInstrumentation()); - } - - - public void testTouch() - { - sleep(5000); - int viewportHeight = touchTool.getViewportHeight() - 40; - int viewportWidth = touchTool.getViewportWidth(); - touchTool.touch(50, viewportHeight); - sleep(10000); - } - - private void sleep(int timeout) { - try { - Thread.sleep(timeout); - } catch (InterruptedException e) { - fail("Unexpected Timeout"); - } - } - -} diff --git a/test/src/org/apache/cordova/test/actions/jqmtabbackbutton.java b/test/src/org/apache/cordova/test/actions/jqmtabbackbutton.java deleted file mode 100755 index 737bb367..00000000 --- a/test/src/org/apache/cordova/test/actions/jqmtabbackbutton.java +++ /dev/null @@ -1,30 +0,0 @@ -/* - 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. -*/ -package org.apache.cordova.test.actions; - -import android.os.Bundle; -import org.apache.cordova.*; - -public class jqmtabbackbutton extends DroidGap { - @Override - public void onCreate(Bundle savedInstanceState) { - super.onCreate(savedInstanceState); - super.loadUrl("file:///android_asset/www/jqmtabbackbutton/index.html"); - } -}