The android-testing tag has no wiki summary.
0
votes
0answers
14 views
How to ensure all events have been fired before moving forwarded
How do I ensure that all the ontouch, onclick, etc listeners have been fired in the UI thread before moving forward with the test code? In other words, I have a spinner on which I have registered both ...
0
votes
0answers
4 views
How to make Robolectric select a particular spinner item
I am new to Robolectric and am at a roadblock. I have some custom event that fires on selection of a item in spinner and i want to test that using robolectric. I saw that ShadowSpinner class provides ...
0
votes
0answers
12 views
Robolectric. DevicePolicyManager testing
How I can test a system service with Robolectric? In my case I need to test DevicePolicyManager. Below piece of my code:
public class DeviceAdministratorHelper {
DevicePolicyManager ...
0
votes
0answers
20 views
Robotium and Jenkins UI testing errors
I first ran into this problem when trying to run Robotium UI tests on a MacOS Mini with no monitor. I added Robotium code to test UI clicks on screen, since we want to add some UI automation to our ...
0
votes
0answers
34 views
How to set Intent and Configuration before starting activity in Robolectric
My Activity -that i want to test- has to have extras before starting which had to be located in Intent. How can i add them before lunching the activity in testing?
And the same function is also ...
0
votes
0answers
18 views
InstrumentationTestRunner thread does not recieve messages posted via handler
Consider the following simplified code of my test:
public class SimpleTestCase extends AndroidTestCase {
/* setUp and tearDown */
public void testHandlerInInstrumentationThread() {
...
1
vote
1answer
28 views
resetting phone caused apk to stop working
I have been working on testing in-app billing. Through the process, I learned that I needed to reset my device so as to wipe out my personal information or google would keep complainer about me not ...
0
votes
0answers
14 views
Remote access android device screen and testing apk
I finding a way to access android device screen remotely and debug application using eclipse.
i am finding one solution .
this is online emulator link
this website provice a online emulatator .
...
0
votes
0answers
18 views
Is there a way to set AVD Default Language when creating on command line?
I setup a couple of robotium tests and stuff for our CI.
Everthing works fine so far. I just cant figure out how i can define the Default Language for the AVD i creating.
I read Managing AVD but ...
0
votes
0answers
15 views
get android sendevent coordinates scale factor
I am trying to write a script to test my application but when I use sendevent the x and y coordinates are wrong.
when I check the getevent output I can see that the coordinates are multiplied by 1.65
...
1
vote
1answer
36 views
Android, Maven and Jackson
I'm trying to take Jackson into use in my Android app project. Everything else works nice but running tests in CI through Maven fail, if I run the same test from Eclipse it works but then I'm not ...
0
votes
1answer
57 views
Deliver app for beta testing
I am about to deploy my app for beta testing. However, I am confused on the best way to safely deliver to beta tester devices.
I understand emailing apk file is not a logical move.
Having done a bit ...
0
votes
1answer
32 views
android.test.InstrumentationTestRunner Class Not Found [duplicate]
When trying to run an android test case I get the following last two lines:
[2013-04-22 17:11:10 - ProjectTest] Launching instrumentation android.test.InstrumentationTestRunner on emulator-5554
...
0
votes
1answer
72 views
Androd Maven Instrumentation Tests with Robotium returns IllegalAccessError
I have have my android application integration tests.
When I try to run them from maven I get error below. I read here that I should use <scope>provieded</scope>, but then I get ...
1
vote
1answer
77 views
Robolectric “Failed to create a android.widget.Button” error
When I try to run my robolectric tests I receive exception:
java.lang.RuntimeException: Failed to create a android.widget.Button
However if activity doesn't contains any buttons everything runs ok, ...
0
votes
0answers
19 views
android-maven integration-test deploy not finding jar library at run-time
We are attempting to get some continuous integration testing online for an android library (.jar file, but not an android project with the library flag set) that we have written. I have created a ...
0
votes
2answers
37 views
Android Manifest Instrumentation
I have a android test project setup to test my android project. In the android test project's manifest, I have an entry for instrumentation. It looks like:
<instrumentation
...
0
votes
1answer
379 views
Test run failed: Instrumentation run failed due to 'java.lang.ClassNotFoundException'
This is my first time setting up an android test project to test a android project.
I've created a very basic test case which I'm trying to get to run, however what I have does not run. I get a Test ...
3
votes
1answer
47 views
Android Junit Testing vs. Normal Junit Testing
I'm taking over an android project and I wish to introduce unit tests to the project, to help avoid possible regressions.
For normal java projects, I have two source folders: src and test. The src ...
0
votes
0answers
29 views
how can we write parametrized Test cases for android
As reference to Java JUnit doc...
http://junit.sourceforge.net/javadoc/org/junit/runners/Parameterized.html
I tried to implement the same in android, but did not work. Also I inherited Test class ...
0
votes
1answer
41 views
Robolectric Testing: can not get the locale
I'm using robolectric framework to test my android project. It is working very well but i couldn't find how to solve the problem:
In my activity class, i have to take the current language as follows:
...
2
votes
0answers
83 views
Robotium and Service Test
I have an Application which binds to a Service using #startService. The Service is a remote service, defined using AIDL.
I want to write a Robotium 4.x Test which binds to a "Mock" Service which ...
3
votes
1answer
89 views
Android tests are not executed
I have created a test project with exact the same code as shown here:
http://developer.android.com/tools/testing/testing_ui.html
I have uploaded the jar file in the android virtual device and now ...
1
vote
1answer
27 views
Android testing: How to change application before actvity is created?
When writing an android test case how can I call some methods on my application object before the activity is created? My test class extends ActivityInstrumentationTestCase2.
Some of the things I've ...
1
vote
1answer
82 views
Cannot run android ui tests from command line
I have created a simple ui test for an android application following this tutorial:
http://developer.android.com/tools/testing/testing_ui.htm
Now I have build my project and uploaded the ...
0
votes
1answer
69 views
Testing an already running Activity using Robotium
I try to test a app which starts a special activity every time the app got started. Lets call this Activity AlreadyStartedActivity. The test case looks something like this:
public class ...
0
votes
1answer
154 views
My simple test case does not run on Robotium
I am trying to test my application with Robotium using an extremely simple test case but it fails. I have tried everything and nothing works. My main activity is a Google Maps Activity. I've tried ...
0
votes
0answers
35 views
Android Testing Data propagation across multiple applications
I have data that I share across multiple applications. The data can be pushed from any of our applications.
I am trying to see if there is a tool where I can perform actions across more than one ...
0
votes
1answer
77 views
How can I unit test my GPS/Google Maps Android application?
First of all, I am new to JUnit testing.
I've built an Android application that find's the nearest places based on the user's current location. It uses either a NETWORK or GPS Provider to obtain a ...
0
votes
0answers
16 views
Android Resource not found in ProviderTestCase2
I'm currently writing a csv-file-importer for my app, but I have difficulties writing tests for it. What I'm trying to do is import a sample csv file and compare the results to the database.
public ...
1
vote
3answers
112 views
Android Testing: What do to when nothing has an id?
I'm trying to write some automation scripts for an app I have. I've done the tutorial on Robotium's site and have a basic understanding on how I can automation. However from what I can tell regarding ...
3
votes
0answers
63 views
Common utility classes for Android testing projects
I keep tests for my Android projects in four separate projects: unit and functional tests separately, and tests that require native Android environment (Activity/Service tests, functional Robotium ...
0
votes
0answers
45 views
Dagger & Android - race conditions in tests?
I am using Dagger to inject dependencies into activities in an Android project. All of the providers are kept in one module which is stored and managed by the Application subclass. Activities inject ...
-7
votes
1answer
180 views
How to Test android app manually and automation [closed]
I am new to android app testing . Please suggest me how to test app manually?
1
vote
2answers
101 views
Using Robotium Solo 4.0 to change system clock
Is there any method built in to Robotium Solo 4.0 to change the system clock time?
I understand that I could probably write some code to open the Settings app, navigate to the clock and change the ...
0
votes
0answers
150 views
Robotium Solo 4.0 pauses after typing text
I'm using Robotium Solo 4.0 to write some functional tests for an Android app. The following sequence is giving me issues. I'm running on a Nexus 4.
View cartIcon = solo.getView(R.id.cartBtn);
...
0
votes
1answer
69 views
Robolectric. Maven OutOfMemoryError: GC overhead limit exceeded
Why when I add to my pom.xml dependencies to Robolectric library I get OutOfMemoryError: GC overhead limit exceeded?
My dependency:
<dependency>
...
0
votes
1answer
181 views
Using ActivityInstrumentationTestCase2 cannot seem to test ListView contents
I have the following test code. I am trying to test whether a list is being populated from SQLite database.
public class ViewIssuesActivityTest extends BaseActivityTest<ViewIssuesActivity>{
...
1
vote
0answers
51 views
Android. Robolectric. Testing AccountManager results
In my application I use method with account manager for getting owner emails. How I can test this method with Robolectric? Should I use for this purpose mocking? If I'm right, can I use Mockito? Is ...
0
votes
1answer
74 views
Using Robotium with a contextual menu
I'm testing an application with Robotium, and I have a custom listview with checkboxes. When I click on a checkbox it loads a contextual menu giving the user buttons to modify and delete those items.
...
1
vote
1answer
69 views
Android Testing AsyncTask with TextView Passed in
I have an AsyncTask that I would like to write a test for. It has a TextView that is passed in:
public LoadAssetTask(TextView target, boolean skipSingleLineBreak, InputStream in) { ...}
How do I ...
0
votes
0answers
101 views
Touch in Samsung Remote Test Lab devices
I am testing my app on different devices with Samsung Remote Test Lab at http://developer.samsung.com/remotetestlab.
Everything is working fine but couldn't get touch event or swipe event in Galaxy ...
0
votes
1answer
65 views
How to click on RelativeLayout with UiAutomatorViewer
I have
UiObject okButton = new UiObject(new UiSelector().text("button1"));
okButton.click();
and it works perfectly I set android:contentDescription="button1" and everything works fine, the button ...
0
votes
1answer
380 views
Integrating uiautomator test case with application code in Android
I am using Eclipse IDE.
Here is my code for uiautomator testcase:
public class caltest extends UiAutomatorTestCase {
public void testDemo() throws UiObjectNotFoundException, IOException {
...
1
vote
0answers
103 views
Read data (as USB data) from PC when Android device is connected to PC
I am working on a project where we are developing an Android app to read data from an RFID chip in an USB. The Android app works fine, reads the RFID data when the USB(with the RFID chip) is ...
0
votes
2answers
199 views
Android ActivityInstrumentationTestCase2 NullPointerException on getting context
I have an ActivityInstrumentationTestCase2 and I have had no luck getting context for the test.
package com.vsnetworks.vsnmedia.test;
import org.json.JSONObject;
import android.app.Activity;
import ...
0
votes
1answer
95 views
Can't run android junit tests on a real device
I'm running an Android test project from eclipse. The project run on the emulator. If I attach my device eclipse doesn't give me the choice to run the test project on it, but I can run my application ...
0
votes
0answers
48 views
Android Multi-Touch testing
I have developed an application which has multiple gesture recognition based. I wanted to know how to test this app. I came across Instrumentation API through which I was able to test all the aspects ...
4
votes
1answer
208 views
How to fill in password EditText with Android uiautomator?
Is it possible for the uiautomator to select a password EditText? I have no problem finding other EditText views by their android:hint property, but the uiautomatorviewer shows all password fields as ...
2
votes
2answers
137 views
Sequence of runOnUiThread and sendKeys calls leading to NPE on Android
I am new to Android and JUnit testing.
I am trying to come up with some test cases for the MyFirstApp example as explained here:
http://developer.android.com/training/basics/firstapp/index.html
Here ...



