-2
votes
0answers
16 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
1answer
41 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
1answer
63 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
146 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 ...
2
votes
2answers
572 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
537 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
206 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 ...
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 ...
1
vote
0answers
194 views

Instrumentation: Control Lifecycle

How is it possible to control the lifecycle of an Android Activity from within a TestCase using Instrumentation? On the official documentation, it is stated "Lifecycle control: With instrumentation, ...
0
votes
1answer
584 views

How to create, start, resume, pause, stop, destroy android activity during testing

I wish to capture data from the views in the activity, then pause it, then resume it and ensure that the data has not changed. I tried calling Activity#onPause() in ...
3
votes
2answers
686 views

ActivityInstrumentationTestCase2 issues - test hangs because of invalidate() call in the code I'm writing a test for

I'm implementing a test for some code I've written which I have distilled down into a sample project pasted below. The problem I am having is that the test hangs the test runner and none of the test ...
0
votes
1answer
185 views

Using custom attributes with Android Instrumentation Tests

i have an android project containing two sub-projects (the app and the instrumentation tests). Everything built fine with maven-android-plugin until i added some custom attributes ...
3
votes
3answers
2k views

How do I make a MotionEvent to zoom?

I have an instrumentation that I want to use to test my application, but I can't seem to get the pinch zoom to simulate properly. Here is my current code. The gist of it is this: push down both finger ...
3
votes
0answers
180 views

Is anyone using glassbox framework for automated troubleshooting and monitoring of Java EE apps? [closed]

Glassbox seems to be very promising but wondering if anyone is using it? Also are there any other alternatives to it?
1
vote
2answers
1k views

Moles VS2010 Unit Testing of Windows Service Fails

I am writing a relatively small and simple Windows Service, and using Moles to mock unit tests. Due to the small code, I decided to use Moles instrumentation, rather than segmenting the code with ...
4
votes
3answers
1k views

Accessing instrumentation test resources

I am trying to find a way for my instrumentation tests to have access to string resources generated within the test package. More details: I have an Android test case which inherits from ...
4
votes
1answer
171 views

InstrumentationTestRunner: What does android:functionalTest achieve?

I am wondering what InstrumentationInfo#functionalTest is supposed to achieve. Does it have any impact on how the application environment is started?
0
votes
1answer
435 views

Android - Unit testing using Instrumentation Framework

I have recently started testing for my android application using Instrumentation framework. I have an Activity A which calls out an AsyncTask in its onCreate() method. So the problem is, all of my ...
4
votes
3answers
1k views

Why is there no test instrumentation for BroadcastReceiver?

Maybe I'm missing something. I want to write test cases for a BroadcastReceiver; specifically, it is for receiving the BOOT_COMPLETED event and setting an alarm for another receiver to handle later; ...
0
votes
1answer
186 views

Testing this Activity

I have an Activity I would like to automate testing on. The start up of the Activity is like this: Get data from Intent Bind to service and obtain some objects specific to that Activity's intent ...
0
votes
1answer
372 views

getAllTests and getTestSuite in android.test.InstrumentationTestRunner

I've created a test runner extending android.test.InstrumentationTestRunner. I'm looking for a way to define the set of tests to get executed based on a set of configurations. I thought I may be able ...
7
votes
3answers
3k views

How do you force an orientation change in an Android Instrumentation test?

I'm writing some acceptance tests for an application using the ActivityInstrumentationTestCase2 class. I want to cause an orientation change from within the test to ensure that a number of things ...
5
votes
2answers
5k views

how to send key events to a headless emulator in an instrumentation test?

We are currently working on an instrumentation test suite which runs on our build server, but while the tests pass on a dev machine using a normal Android emulator, the builds fail on the build server ...
15
votes
4answers
5k views

GUI testing with Instrumentation in Android

I want to test my Android applications UI, with keyevents and pressed buttons and so on. I've read som documentation that Instrumentation would be able to use for this purpose. Anyone with ...
0
votes
1answer
1k views

android instrumentation testsuite

I have written two test cases in a package com.app.myapp.test When I try to run them both of them are not getting executed, only one test case gets executed and stops. I have written the following ...
8
votes
5answers
17k views

Examples for Robotium

I found a tool for Instrumentation Testing called Robotium.It is easy and simple for black box testing of android applications. We can use it as follows: solo.clickOnText("Other"); ...
3
votes
1answer
2k views

Accessing AlertDialog in AndroidTestCase

I'm using ActivityInstrumentationTestCase2 to do automated black-box testing on my GUI. Is there a way to click on a dialog, or get Views belonging to the Dialog in unit tests? The only way I could ...
1
vote
2answers
493 views

How to instrument Oracle 10g to get table access metrics?

We have a legacy/production database. It has been in continuous development and use backing a website that has evolved over 10 years. The database is accessed by multiple technologies - perl cgi, php ...