I'm working on a school project and I'm researching testing possibilities for Android applications.

On this page: http://developer.android.com/resources/tutorials/testing/helloandroid_test.html Google writes about unit testing. Is this really a unit test? A Unit test will not integrate all classes and will not test in this context.

So my opinion is, it is not a Unit Test but an Integration Test. What do you think?

link|improve this question
2  
I get a 404 error on that link. – David Nov 24 '10 at 11:18
Sorry, fixed the link... – Ians Nov 24 '10 at 11:25
that's most certainly an integration test. If you want to unit test android apps, try robolectric. – devadvocate May 19 '11 at 21:06
feedback

3 Answers

I don't think there's any general consensus on what a unit test is, so it's hard to say. While some might argue it should be a very small unit of code (e.g. a method), that's pretty limiting, especially considering the fact that when you refactor a passing test, you might put that code into multiple methods or even classes.

Roy Osherove's definition is as follows:

A unit test is a fast, in-memory, consistent, automated and repeatable test of a functional unit-of-work in the system.

A unit of work is any functional scenario in the system that contains logic. it can be as short as a function, or it can span multiple classes and functions, and it provides internal or business value to the system under test.

'Fast' and 'in-memory' are, IMO, the main thing separating this from an integration test. If you go by that, then I think the google tests are indeed unit tests.

link|improve this answer
1  
I'd rather emphasize "self-contained" rather than in-memory. A self-contained test does not involve disk access, network, inter-process communication, environment variable, or some other state external to the unit being tested. If it is possible to write a test for the whole program that matches this characteristic, it's a unittest. Being self-contained, consistency, repeatability, and automatibility is implied. In unittest, external states are usually simulated by mocking. – Lie Ryan Nov 24 '10 at 12:12
The examples from Google all need an emulator to test on. This takes much time and they are not self-contained. Some people from Google made it possible to test using the JVM and not de DVM (sites.google.com/site/androiddevtesting/notepadsample). So this looks more self-contained... It looks like Google used the wrong word? – Ians Nov 24 '10 at 13:06
@Lie Ryan - sounds reasonable, although I don't think 'self-contained' is a very clear definition. At least being 'in-memory' is fairly easy to determine - although you can then use an in-memory DB and pretty much test a whole system using a 'unit' test, which doesn't sound right to me. – Grant Crofton Nov 24 '10 at 13:43
I'd say it is a "unit test". The test requires some environment to run in. All do, as long as the environment is self contained and scriptable why should the details of the environment matter? – mlk Nov 24 '10 at 13:43
@lans - yeah the need for an emulator does muddy the waters somewhat. Certainly for a whole system, I would define 'unit tests' as the ones I could run without the need for such an environment or other configuration (e.g. using POJOs), while end-to-end style tests involving an emulator I would consider integration tests. Although Roy's definition doesn't seem to make any such distinction. Pick whichever definition works for you, I guess! – Grant Crofton Nov 24 '10 at 13:47
show 3 more comments
feedback

A test is not a unit test if:

  • It talks to the database
  • It communicates across the network
  • It touches the file system
  • It can't run at the same time as any of your other unit tests
  • You have to do special things to your environment (such as editing config files) to run it.
link|improve this answer
feedback

Hello there fellow coders.

I'd like to add that in my experience, it seems best to test behavior of an object, if it does what you need it do to (for your problem domain), whether its one method or more to pass your test. I know this may sound like simply testing methods, but there is more to it. A good book to read to help understand this is "Growing Object Oriented Software, Guided by Tests" by Nat Pryce and Steve Freeman.

All in all, good question, and great answers. Keep it up. :-)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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