Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have googled about testing uni and systematic testing. But I am confused what exactly is systematic testing? I’m developing a mobile app and like to know how I can approach this technique testing.

Any ideas? Thanks in advance.

share|improve this question
2  
Related question on Programmers: Systematic Testing – Mark Booth May 3 '12 at 12:36

1 Answer

up vote 0 down vote accepted

Systematic testing is a much more exhaustive means of debugging software. The goal is to test the software against a variety inputs in order to find as many defects/errors as possible. The difficult part about systematic testing is usually coming up with the inputs/situations to test against (especially in the case of Android development, as a number of things can go wrong). Does your app work correctly after configuration changes? Do your EditText boxes specify the correct inputType? Systematic testing provides a means of uncover such errors, and often results in a more secure/robost application.

The Android team provides several tools that can automate this kind of testing (although obviously there is no guarantee that it will cover ALL of the cases). One such tool is monkeyrunner. Check out the Android developer's guide on testing for more information.

share|improve this answer
Thanks Alex, so you are saying that I have to install sort of software to be able to do this kind of testing? The monkeyrunner seem a good tool but it seems I have to write a Python program and I don't know Python at all. I was wondering I can use normal testing e.g logCat to determine the errors? – Kitaro May 3 '12 at 1:33
Can you perhaps give some sort of an exmaple how this testing techinqus are use? – Kitaro May 3 '12 at 1:36
Yup, you can test it however you want! The important thing is that you are exhaustive... i.e. you spend a while trying to think up every possible way a user might break your application. Then you can test your app against it and see if it behaves the way you want it to. – Alex Lockwood May 3 '12 at 1:36
Here's a small list of sample tests you might perform from the Android developer's site. Another thing you should make sure you test against is properly handling user input into EditText boxes. For instance, if you have an EditText box that takes an integer, you would want to set inputType="number" to prevent the user from entering non-numerical characters. You would also want to make sure your EditText box didn't accept integers greater than Integer.MAX_VALUE, as this would result in integer overflow. – Alex Lockwood May 3 '12 at 1:40
Great ideas Alex thanks! I will try that, my app does have EditText boxes but how do I test it in LogCat? Where do I have to look if it's appear on the console? VDIWEA? – Kitaro May 3 '12 at 1:58
show 6 more comments

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.