4

I want to test my app always in a lot of possible states of internet connection. Is it possible to simulate a specified state of internet connection (for example "3G" or "H") without leaving my position?

animuson
  • 53,861
  • 28
  • 137
  • 147
AnWi
  • 69
  • 1
  • 8
  • It is possible in the emulator: http://stackoverflow.com/questions/3002886/how-to-disable-enable-network-switch-to-wifi-in-android-emulator/3505167#3505167 – Vincent Mimoun-Prat Jul 21 '11 at 14:27

2 Answers2

3

You could use something like WANEM that allows you to modify the characteristics of your internet connection, like packet loss.

http://wanem.sourceforge.net/

From your question I take it it's not exactly what you are looking for but maybe it'll give you another perspective.

aukaost
  • 3,778
  • 1
  • 24
  • 26
0

The Network Emulation Toolkit can provide this functionality.

http://blog.mrpol.nl/2010/01/14/network-emulator-toolkit/

You can set up a machine through which your traffic is routed through, and can configure the bandwidth, latency, error rate, etc. either manually or select from some built in profiles (such as GPRS).

It will also provide you the ability to monitor the current throughput and error rates.

Matthew Blackford
  • 3,041
  • 1
  • 24
  • 28