Android :: Automated Testing In Development

Mar 17, 2010

I have an ordinary project with JUnit tests that are connected to the classes in my Android Project. I want my server to run some JUnit tests in my testproject everytime I commit my code from my Android Project.Is there a best practise to do this?So far I only managed to run the tests when they are a part of a while the JUnit tests and Android classes are separated into 2 different projects, since JUnit runs on JVM and Android in an emulator on DVM (Dalvik Virtual Machine).

Android :: Automated testing in development


Android :: Automated GUI Testing Framework

Jul 14, 2010

Does there exist an automated GUI testing framework for Android?

View 1 Replies View Related

Android :: Automated Functional Testing

Jul 9, 2009

Automated Functional Testing..First of all let me make you all aware that I'm a developer and what you are going to read further is a developer's account, so it may sound to you like a layman tester. But what I'm going to share is something which has been very helpful to me to 'functionally' test the web application our team has been building and I thought this may help you as well. So even if you are a tester, try to think the way developer's think for some time, I'm sure this would be useful to you too. Before I go ahead, I think we all understand that Functional Testing is testing the functionality of our application which means you'd probably be going through a login using some credentials, clicking some links, verifying some outputs - in simplest terms. Now just give it a thought that if you can automate these i.e. invest some time for once and then while you are sipping a cup of coffee, someone is testing what you coded. Change your code 10 times and run your test 10 times to ensure nothing breaks, so easy. Not just this if you have continuous integration server setup which runs your tests, you'd come to know immediately if and when someone else broke your code. Believe me ones who have used it, feel it is fantastic.

There are a variety of tools available for this over internet each with pros/cons but I'm going to share some info here about one which I liked very much and have been using for a while now. I'd also share why I preferred it over others.Ok, no longer prolonging the suspense the tool I'm talking about is called Canoo WebTest (webtest.canoo.com) which is a free Open Source tool for automated testing of web applications in a very effective way. The primary reason why I liked it is that it is FAST; very fast ... most of the test cases that I've written are executed in less than a minute and that too over remote applications deployed on servers on the other side of globe. Second reason for liking it so much is the ease of writing; very quickly you can build up your tests. Though they have released a WebTest recorder plug-in which when installed in Mozilla Firefox can record the script for you, but believe me the more you start writing there test cases, the less reliant you will become on the recorder. Third thing is these tests do not use a browser so that completely eliminated browser-specific issues which some tools are plagued with.

View 2 Replies View Related

Android :: Best Device For Testing Development?

May 7, 2010

I am starting android development which phone is good for testing? or is emulator good enough? I am doing game development.

View 6 Replies View Related

Android :: Testing Problem With ActivityInstrumentationTestCase2 - T - Error When Trying To Access Activity Under Testing

Feb 24, 2010

I wrote a simplest test based on android.test.ActivityInstrumentationTestCase2.

CODE:..............

View 2 Replies View Related

Android :: Android Functional Testing - Testing Multiple Activities

Apr 16, 2009

I've been exploring the Android test package and I'm very confused on how to implement functional testing for endpoint-to-endpoint.

Consider the example below, I have 4 activities: 1. A Contact List Activity 2. A View Contact Activity 3. An Add/Edit Contact Activity 4. A Sync Contact List activity

I want to automate a few tests that will go through multiple test cases simulating a user experience: From launching the application, to selecting 'Add contact;' opening the add contact activity, entering data, saving it, going back to the list activity, and verifying the new contact was saved properly.

As I understand it, ActivityInstrumentationTestCase<T extends Activity> and ActivityUnitTestCase<T extends Activity>, are only useful for testing single activity functionality.

But what if I need to switch between 2 or more activities inside a single functional test case?

View 5 Replies View Related

Android :: Automated Texts App

May 13, 2010

I'm looking for an app that will send out a text at a predetermined time. For instance, I want to text a reminder to my GF at 4 AM. Obviously, I'm sleeping at 4 AM and cannot text. I would like to be able to create a text b4 I go to bed, and have it automatically send at 4 AM.

View 4 Replies View Related

Android :: Automated Call Answer

Aug 14, 2009

Can we accept call through the code after specific time of ringing is over?

View 2 Replies View Related

Android :: Any Application For Automated Video Recording?

Aug 7, 2010

I am looking for an app that allows for automated video recording given a start time and stop time. I searched the market and message boards but no luck so far. Does anyone know if there is an application like this?

View 2 Replies View Related

Android :: Run Automated Wireless Backup At Specified Time?

Dec 20, 2008

I was just wondering if there are any apps that will run an automated wireless backup at a specified time? Let's say I want my G1 to back itself up at 4AM each day. And then at this time, it will run a backup, and then email the backup file to another email address I have? I don't have a G1 yet, ordered it yesterday, so I'm not sure if it already has something like this in place.

View 4 Replies View Related

Android :: How Do I Play Automated Call To Number?

Jul 24, 2010

The text to speech API in android is awesome.. Is there any way in which I can play this text to speech content to a call instead of the speaker? As in I call a number automatically and then play text to speech to the callee.This is not another opening to phone spam if you are wondering.. Working on an automated distress call system :D

View 1 Replies View Related

Android :: Can't Update Applications After Backup / Automated Way To Do So?

May 13, 2010

I didn't know whether or not to post this here or in the root forums; I figured that this doesn't happen only after you flash a new rom

I flashed a new rom, but that deletes all of my apps so I used My Backup Pro to get all my apps back, but that doesn't add them back to the "My Downloads" part of the Market. Is there any automated way that I can add them back without having to go through them one by one. I don't mind paying for an app.

View 3 Replies View Related

Android :: Control Phone Or Automated Test Using Remote PC?

Jul 25, 2009

I am a tester, is there a way to control the Android phone or do the automated testing using a remote PC? Or how can I dev such a automted tools, Use which technology? thanks.

View 14 Replies View Related

Android :: Good Automated Unit And System Test Tools?

Nov 3, 2010

I approached this problem as an oh hey that's not too bad, I can write a bunch of unit tests, and I have been keeping my suite green. However as things get more involved continuous integration and testing is a great great thing to have. And then I saw oh Android has emma integration as well awesome ... and then that's where it get's iffy. So I setup Hudson and have it call the coverage target of the ant build.xml that the android executable in the sdk can generate. And then it hits me. adb -s <emulator> shell am instrument -w ... will never return a result code that is not 0 ... because adb technically exited cleanly and usually will regardless of how the shell command that executed did..............

View 6 Replies View Related

Android :: Unwanted Automated Creation Of New Instances Of Activity Class

May 11, 2010

I have an activity (called Sender) with the most basic UI, only a button that sends a message when clicked.This works ok, the message is sent but every time a message is sent a new instance of Sender is started on top of the other. If I call sendSMS method three times, three new instances are started. I'm quite new to android so I need some help with this, I only want the same Sender to be on all the time

View 3 Replies View Related

HTC Droid Eris :: Automated Text Typing?

Feb 23, 2010

Does anyone know of an app that will automatically type a specified string of text? My email address is rather long and since this is used as the login for just about everything, it's tedious to type with an on-screen keyboard. On my Mac, I use QuicKeys to set short key combinations that will type various things like addresses, phone numbers, emails, etc. that I use all the time. Is there an equivalent in the Android world?

View 2 Replies View Related

General :: Messaging With Automated Text From Email?

Apr 22, 2013

I have an odd problem and my searches for solutions have come up blank. I have a Nexus 4 running 4.2 on NET10. I receive automated text messages from an email address, but the number it comes from changes every message. Can i get these to all link together under one contact? the numbers are 1410000xxx where xxx are steadily increasing numbers(1410000001, 1410000002,1410000003).

View 1 Replies View Related

Samsung Moment :: Automated Voicemail Greeting Option

Dec 8, 2009

Not sure if anyone else was having this issue, but if you want to get the old automated robot voicemail greeting instead of a recorded greeting, go ahead and record your main greeting and then go back into your voicemail settings and delete the greeting. It will revert to an automated greeting. Also, to get it to say your number instead of your recorded name, go into personal option under the voicemail settings and delete your recorded name, and it'll revert to just saying your number in the automated voicemail greeting.This had been bugging me ever since I got the phone since I hated recording a greeting myself and for the life of me I could not find the option for an automated greeting. Anyways, hope that helped.

View 4 Replies View Related

General :: Automated Tool That Could Perform Conversion From JS To Java?

Jun 20, 2012

Android Adblock (beta) tried, but didn't get far. I would guess this is because the author tried to reimplement ABP in Java from scratch.

1) Could a skeleton proxy be written with just enough code so the ABP core could be used as is? (Java skeleton app running Javascript) (Yes. May be slow.)

2) Any automated tool that could perform the conversion from JS to Java?

View 1 Replies View Related

HTC Desire :: Automated Email Setup Via POP3 - No Mail Sending

May 21, 2010

I have a new Desire with T Mobile and I have gone through the automated email set up via my "POP3" account with Ntlworld. Problem is, whilst I receive my emails, I cannot send emails. To be honest, this is not an area that I am very good at, so I might be missing something daft. Does anyone know of something obvious I can do, or can they help me to check my settings.

View 7 Replies View Related

General :: Make Automated Movement Whenever Press Power Button?

Apr 29, 2013

Using Android, is it possible to automatically make your phone initiate a screen gesture (like a swipe across the screen) whenever you hit the power button, then proceed to turn off the phone? I know it's a very weird question, but I have my reasons.

I imagine it's possible with some type of app like Tasker, but I don't know if Tasker can initiate screen movements that imitate a finger moving across the screen in a point and direction of your choice.

View 5 Replies View Related

General :: Galaxy Note I717 - Unplugged While Automated Rooting Program Running

Apr 12, 2014

I have a galaxy note i717 and it was unplugged while an automated unrooting program (kingo android root) was running. Now the phone is stuck at the "Firmware upgrade encountered an issue" screen, and Kies won't connect to the phone.

Is there anything I can do to get the phone working again?

View 1 Replies View Related

Android :: Using The Android Gallery As An Automated Slideshow

Jul 30, 2010

Hi I want to create a splashscreen for an app, and have a gallery rotate several images on a timer. Can anyone show me how I could use a timer to animate the images in a Gallery?

View 1 Replies View Related

Android :: Looking For Testing An App

Oct 10, 2010

I don't know if this is kosher, but I wanted to see if anyone would want to test an app I built. I don't want to release an app to the market without getting out all the bugs I can, but I'm a lone developer trying to build apps on the side in my free time. I don't know many people with Droids, so I'm trying to reach out to the community. I built an app I call "Next Track on Shake". Not a good name, (and I'm up for suggestions for a better name) but I can't think of anything else to explain its function. I listen to alot of music, usually on shuffle, and I hate having to wake the phone up, unlock the screen, open the music player, and change the track. The new versions of Android require PIN or Password when you use a corporate account, and that adds another step in changing tracks. I built an app that allows you to shake the phone, whether awake or not, and it will move to the next track for you. I also added the ability to customize the shake; you can set how hard or how fast you need to shake the phone to change the track. The default shake is a good setting for most people, but alot of people jog with the phone on their arm or hip and would need to adjust the strength of the shake so as to not accidentally change tracks. I've also added the ability to stop/start the service when needed, and I display an ongoing notification when the service is running. When the phone is rebooted, the app checks the preferences, and only starts the app if you had the service running before reboot.

View 3 Replies View Related

Android :: Want App Testing

Jan 26, 2010

I have created an app which needs some testing done. I have tested it on the HTC Hero (UK version) and the HTC Tattoo. Worked well on both the devices. I wanted to test it on the newer android phones like the Droid or the Nexus One. If anyone could help me out with the testing, there is a link to the .apk file below. This app does functions like silencing the ringtone when the phone is flipped, switching on the speakerphone when in call etc.
http://dl.dropbox.com/u/556550/FlipShake.apk.

View 3 Replies View Related

Android :: Testing Uses Permission

Jun 24, 2009

I'm prepping my first app for publishing and am a bit confused about how to properly test my <uses-permission> tags.. if i don't specify any permissions my app runs with no complaints on my G1. I tried installing it via "adb install" as well as with the eoeAppInstaller (as somebody had recommended). Also, the app is signed with my own certificate (not the debug cert). given that it works fine with no permissions (btw, it accesses camera and sd card), how will I know if I've set all of the proper <uses- permission> tags?

View 5 Replies View Related

Android :: Need To Test UI Testing

Feb 8, 2010

Is there anything to test the UI of an Android app like Jemmy for Swing?

View 3 Replies View Related

Android :: Nexus One Testing

Jul 18, 2010

Can someone with a Nexus One download AppFriend from android market (qr code -http://www.zappmarket.com/catalog/27) and give me a stack trace of the error message? I've got reports coming in that it crashes on startup (and the nice 1 star reviews that follow). The code that it is breaking on is really simple, so I'm not sure what the incompatibility could be, as it works on G1 and Magic.

View 4 Replies View Related

Android :: Testing On Every Possible Device?

Nov 13, 2009

We have many phones, but we don't--and probably never will--have all of them.

It's frustrating that some phones cannot see our apps in the market, and we'd like to know which phones those are.

We'd like to have a simple way to have our app tested on each phone, but at this point there's no easy way to do that.

My question is: what would we as developers be willing to do to get these needs met? Is there enough demand for someone to buy all possible Android devices and charge a nominal fee for these services?

We would pay a small fee to have out app accessed and downloaded on all phones--this would give us a report of which phones could access our app. We would pay a fee to have a step-by-step test ran on each possible device so we could know it worked on that device, at least minimally.

View 3 Replies View Related

Android :: About The Testing Of Bluetooth?

Jul 8, 2010

I have some questions about the testing of bluetooth.

I have tried the bluetooth chat and it worked pretty well on my two Andriod 2.1 based mobile phones.

However, this test can only be done only by someone who has 2 android phones and the version must be 2.1.

I assume this is a big issue because i looked into the CTS related to Bluetooth topic and it doesnt explain much about it.

The regular expectation for testing Bluetooth should be:

# Scan for other Bluetooth devices # Query the local Bluetooth adapter for paired Bluetooth devices # Establish RFCOMM channels # Connect to other devices through service discovery # Transfer data to and from other devices

In my case:

I would like to implement the application to send the file(image file, mp3, whatever...) from my Android 2.1 mobile to any device with Bluetooth module.

View 3 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved