• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Tim Cooke
  • Campbell Ritchie
  • paul wheaton
  • Ron McLeod
  • Devaka Cooray
Sheriffs:
  • Jeanne Boyarsky
  • Liutauras Vilda
  • Paul Clapham
Saloon Keepers:
  • Tim Holloway
  • Carey Brown
  • Piet Souris
Bartenders:

Testing simulation

 
Ranch Hand
Posts: 198
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Does the book provide any good guidance as to how to test my application for the android , besides using an android device to test it out.
 
ranger
Posts: 17347
11
Mac IntelliJ IDE Spring
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Tina Ma wrote:Does the book provide any good guidance as to how to test my application for the android , besides using an android device to test it out.



The book is about Core Spring and doesn't cover Spring Android project as far as I have seen so far. But the Spring Android project is very small with a few classes. The main is the RestTemplate to make Restful Web Services calls from the device.

Unfortunately, it is an extreme pain to do Android Test, well sort of. The main caveat is that if your class has any Android classes in it, the test has to run on the emulator. This is because the .jar file you have in the IDE just has stubs for all the classes so the code can compile and has absolutely no implementation code in it.

I also find that Android tests only work with things like Activity etc for an Android app, but not if you happen to building a library like I am.

Mark
reply
    Bookmark Topic Watch Topic
  • New Topic