-2
votes
0answers
15 views
app named A, the Tested app is FaceBook ,A start FaceBook and test it Automatic [closed]
the requirement is:
i create a app,named A,it is used to run FaceBook app Automatic,Such as,To say hello to a stranger in the vicinity Automatic.
there is a button on A,and click it to start ...
0
votes
0answers
12 views
How to instantiate Instrumentation in normal Android app instead of in test projects?
As you know, android.app.Instrumentation class can be used in test projects for Android development.
Besides being used in test projects, is it possible to use the Instrumentation in normal Android ...
0
votes
0answers
12 views
How to use startInstrumentation() with socket permission enabled?
[The background]
I have been able to use the instrumentation in Android test projects. But now, I am trying to use instrumentation in normal Android app in order to do some automatic GUI control. For ...
3
votes
1answer
54 views
+50
Parameterized instrumentation tests on Android
I'm trying to write a batched instrumentation test (using ActivityInstrumentationTestCase2) for a particular Activity where I change the intent each time the test runs. I can do this with a single ...
1
vote
0answers
36 views
How to set Wifi state using WifiManager in class derived from ActivityInstrumentationTestCase2?
I have automated UI android instrumentation tests that need to turn on/off Wifi for specific test cases. I thought this would be a piece of cake but I am having some trouble. I need to have the ...
0
votes
1answer
33 views
Simulating Menu Press action not working on all the Android
As in the later Androids, the menu button has been removed, I call the following code to open menu items when some one taps once in the UI.
public void singleTapOnImage(View view) {
...
0
votes
1answer
38 views
Android Instrumentation testing
I am writing a test case for my android activity. The activity has two textboxes and a button. When the button is pressed i make a call to a web service and the application responds accordingly. Now ...
0
votes
0answers
16 views
Android instrumentation assert failing
My activity contain a textview and a password. i have written a test case to check the validation for this activity.
mInstrumentation.waitForIdleSync();
final EditText ...
1
vote
1answer
30 views
Android Instrumentation - Assert fails
I have a small activity that contains a textview and a password. I have written a small text to test this activity. But the assert on the last line is failing. Could someone please tell me why ?
...
0
votes
1answer
30 views
Android instrumentation testcases
In my instrumentation tests i have a function called
@SmallTest
public void testPreconditions() {
startActivity(mStartIntent, null, null);
...
0
votes
1answer
38 views
Android Instrumentation Unit testing an adapter that requires a reference to an activity
I have inherited some messy code that I am trying to clean up. The first thing I'm starting with is writing some unit tests on the module's that I am planning on keeping for a while. Unfortunately, ...
0
votes
2answers
75 views
Android instrumentation ListView click
I have a ListView in my activity. When i click on an item in the ListView, i call an intent and start a new Activity. I have set up my test cases, and obtained a reference for my ListView. How do i ...
2
votes
2answers
85 views
Difference between ActivityUnitTestCase and ActivityInstrumentationTestCase2
I am new to Android Instrumentation cases. i have been looking at the API samples and see that sometimes we use ActivityUnitTestCase and the ActivityInstrumentationTestCase2. What is the difference ...
1
vote
1answer
40 views
Android Instrumentation testing an AsyncTask
I am new to instrumentation testing in Android. Can someone show me how i can start an async task and wait for the result to be computed ? Many of my network calls rely on AsynTasks and i need to know ...
0
votes
1answer
110 views
Android Instrumentation Launch Activity
I have a simple activity that contains a button. When i press the button a second activity runs. Now I am new to Android Instrumentation Testing. So far this is what I have written
public class ...
0
votes
0answers
93 views
Android maven instrumentation tests failing
I have been recently trying my hand at using Android Instrumentation tests. So the main application has the following structure
<?xml version="1.0" encoding="UTF-8"?>
<project ...
0
votes
2answers
111 views
How to pass an argument to an AndroidTestCase?
I've implemented an Instrumentation and an AndroidTestCase.
For my tests I need to connect to an external WIFI device. I want the testers to be able to specify an SSID for the test to use.
Giving ...
0
votes
1answer
307 views
Authorize Android Instrumentation Test for Root Access on Emulator
I have developed an Android app that requires root access, and it works fine. I am trying to test the app using instrumentation tests with ActivityInstrumentationTestCase2 and cover the parts of the ...
0
votes
1answer
58 views
Robotium: Shall I always run my tests with screen turned on?
Didn't find it in documentation, but shall I always run my tests on device which is turned on? If I run them with a screen turned off I got different results.
0
votes
1answer
61 views
Robotium: How to update prefs before Activity is started?
I have several test methods in my class. For one of my tests I need to update application preferences before test is started, i.e. before the Activity under a test is started. I'm using Robotium lib ...
0
votes
0answers
46 views
inject simultaneous keyevents
Is there a way to inject simultaneous keyevents under Android? I'm aware of
android.app.Instrumentation.sendKeyDownUpSync
for single keyevent, but would like something to simulate simultaneous ...
0
votes
0answers
140 views
Android instrumentation and Fragment onResume
I am trying to develop unit tests for an Activity that contains a Fragment. One of my tests involves validating the Activity's behavior across a pause/resume cycle. Using get instrumentation provided ...
1
vote
2answers
381 views
How to start Instrumentation project programmatically using Android Intent?
one way to start testcase is,
adb shell am instrument
-w com.google.vishal.test/android.test.InstrumentationTestRunner
i want to start this using Android code (with intent)
for example,
adb ...
3
votes
0answers
279 views
android.util.AndroidException: INSTRUMENTATION_FAILED:
I have a simple android app and I am testing it using my phone. So, there are two ways to do that :
Using eclipse
Using CLI
Problem:
When I run unit test case using Eclipse, it installs app on ...
0
votes
1answer
85 views
how to receive arguments in activity extends with ActivityInstrumentationTestCase2
Command :
adb shell am instrument -e class com.vishal.nirma.test.MyActivity#MyFunction com.vishal.nirma.test/android.test.InstrumentationTestRunner -e myvar myvalue
Now,
protected void setUp() ...
2
votes
3answers
1k views
Android Testing: Instrumentation run failed due to 'java.lang.ClassNotFoundException'
I have 3 test classes for a particular package from my main application. My first test class is running just fine, the other 2 aren't.
When I try to run those 2 tests, I get the following error:
...
1
vote
0answers
163 views
Unit Testing DialogFragments
I use a custom layout for my DialogFragment which I launch like this:
someDialog.show(getFragmentManager(), "dialog_tag");
The Dialog has two text fields, a "Save" and "Cancel" button and when the ...
1
vote
1answer
167 views
Robotium - installing the target app as part of the build
I'm trying to run a Robotium testing suite on a demo application, but the android maven plugin fails at mvn install after pushing the test application to the device, because it can't find the target ...
0
votes
1answer
198 views
Instrument Android App with startInstrumentation
I want to instrument my App with the Instrumentation Interface from inside the tested app.
I have a custom activity that every of my activities extend. In that I want to start the instrumentation to ...
2
votes
2answers
259 views
Android instrumentation test involving system apps
I must be missing something obvious here:
I'm running an instrumentation test case on a device, also with the help of Robotium. At some point my app under test causes the default e-mail compose ...
1
vote
1answer
930 views
Starting another Activity in a JUnit test by simulating a button press
To illustrate my latest problem with writing JUnit tests for my Android app, I wrote a simple example with two activities, StartActivityForResult and ChildActivity. The former contains a TextView (for ...
2
votes
2answers
561 views
Testing onActivityResult()
I have the following Activity:
package codeguru.startactivityforresult;
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import ...
1
vote
2answers
518 views
Testing that an Activity returns the expected result
I have the following Activity:
package codeguru.startactivityforresult;
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import ...
1
vote
1answer
205 views
Testing SQLiteOpenHelper subclass with JUnit
I am writing JUnit tests for my Android app. I have read through the Android developer resources (testing fundamentals, Spinner example test, etc.). Now I want to test my SQLiteOpenHelper subclass ...
1
vote
0answers
69 views
Catching uninitialized/unreset variables in GDB
Android project with a native component. I'm using a third party library where I suspect there's an bug with uninitialized or unreset variable. The same sequence of calls (should be equivalent ...
1
vote
0answers
108 views
ActivityMonitor gets hit but getLastActivity returns null
I have a problem with one of the test cases in my test suite. What I'm trying to do is simply to click on a button and wait for a new activity to launch.
ActivityMonitor monitor = ...
0
votes
3answers
450 views
Why does my robotium test case does not start immediately after launching the activity?
I have build a Robotium test case for my application. Everything works good except from the fact that i need to manually interact with my app to get the test start running. Meaning i need to go to ...
0
votes
1answer
284 views
sendKeyDownUpSync doesn't work correctly
I've got some problem with sendKeyDownUpSync. I want to use it in my widget to control inbuilt music player. It works almost correctly. Almost because when i call function:
public void ...
0
votes
1answer
273 views
How to let Android Test instrumentation testcases wait some times in order to get some result?
anyone can help me.I want to my testcases sleep to wait the textview text change ,but it seems the Thread.sleep() can not work !
backgroud : I use ActivityUnitTestCase to test one of my activity . ...
0
votes
1answer
1k views
Use ActivityInstrumentationTestCase2 to test Android apps by passing Input data (NDEF msgs) with Intent
For a long time, I was able to solve my problems by reading many different posts here on StackOverflow, but now my problem gets quite interesting. I am stuck and maybe someone can give me some hints:
...
0
votes
0answers
165 views
How to initialize robotium with instrumentation not as test
I have an application that I want to test using Robotium.
The thing is I don't want to do it using the ActivityInstrumentationTestCase2 but as a standalone Android application which will use robotium ...
0
votes
0answers
148 views
How to simulate a Fling gesture in Instrumentation test
Right now I would like to simulate a Fling gesture to an ImageSwitcher component to test if it works.My code of simulation is following:
long downTime = SystemClock.uptimeMillis();
...
3
votes
0answers
57 views
Create folder in Instrumentation context
I am writing instrumentation tests for my app and want to create a temporary folder to store some files. However, I dont want to do that in the targetContext but rather in the test context.
In other ...
4
votes
2answers
389 views
android-maven-plugin, instrumentation testing and testSize
I'm using maven for building, running and instrumentation testing my Android applications. Android testing framework has three different test scopes @SmallTest, @MediumTest and @LargeTest and ...
1
vote
1answer
176 views
ActivityResult not returned to calling activity in instrumentation tests
I'm using method presented below to validate if Activity I'm testing starts another activity.
Instrumentation.addMonitor (IntentFilter filter, Instrumentation.ActivityResult result, boolean block)
...
3
votes
1answer
471 views
Instrumentation test for Android - How to receive new Activity after orientation change?
I'm trying to test, if newly created Activity (after orientation change) is properly reinitialized. The code below shows that activity returned from getActivity() is the one constructed in setUp(), ...
2
votes
1answer
1k views
How to fix INJECT_EVENT permission exception when sending touches to an ActivityInstrumentationTestCase2 test
Although there are many examples showing that something like this should work, the following code fails.
This code lives in a test project that is associated with the real project.
public class ...
3
votes
1answer
234 views
Is it possible to unit test multitouch on android?
I've been trying to make a unit test for an application I'm writing. I want to test the graphics performance on various zoom operations, but I can't seem to figure out how to send events that contain ...
1
vote
1answer
3k views
Way to simulate hardware key press event
I have custom InputMethod that have a BroadcastListener in it. When the listener catches an intent in onReceive() method I call the onKey method of my InputMethod and in that way I simulate a key ...
2
votes
1answer
4k views
How can I deliver parameters to a test function, that launched using adb shell am Instrumentation command
I am developing in Android, I am using instrumentation to test Phone application.
Instrumentation is Android env to test applications.
For that I use am command with name of test case.
I run adb, ...