Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm using monkey command to do some stress testing on my app. But i want to test it more with respect to screen orientations to detect and capture some heapupdates while changing orientations. I searched all over android official site about monkey commands/arguments which will do screen orientations while running on any app/activity. But no luck and thought of asking professionals like you.

If idea on this, please let me know.

share|improve this question
What do you want to do exactly?? Can you simplify? – Chintan Raghwani Oct 13 '12 at 12:04
change orientation using... setRequestedOrientation (ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE); and setRequestedOrientation (ActivityInfo.SCREEN_ORIENTATION_PORTRAIT); – Parag Ghetiya Oct 13 '12 at 12:04
I want to rotate the screen orientations while running monkey tests.. Is there a way to do that? – user1031345 Oct 13 '12 at 19:39

1 Answer

The Test Monkey uses random input. It will change the screen orientation, but there is no guarantee that it will do so on any given test run.

share|improve this answer
Yes, there is no way to make sure it will pickup the orientation or not. I wanted to know that whether is it possible to do with exiting monkey tool or not else any other way to do that? – user1031345 Oct 13 '12 at 19:40
@user1031345: The Test Monkey only uses random input. What you want, by definition, is not random. – CommonsWare Oct 13 '12 at 19:43
I knew that monkey is random.. All i want is to figure it out on screen orientation changes along with random inputs.. – user1031345 Oct 14 '12 at 5:09

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.