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

My app implements a custom content provider, I have Android JUnit tests for it both for basic operations and more complex ones (using ContentProviderOperations).

my tests pass on a GB emulator, but failing (due to unexpected behavior) on a JB device and ICS emulator.

what are the differences between Android versions that can cause different behavior ?

share|improve this question
2  
What is it that is suddenly failing? I am not aware of differences, they exist for sure though – zapl Nov 18 '12 at 17:26
Please consider improving accept rate – Marcin Orlowski Nov 18 '12 at 17:33
how are they failing.. please share junit logs... – Praful Bhatnagar Nov 18 '12 at 17:46
I succeeded in making one test to pass by removing a duplicate ContentProviderOperation.newInsert. I made an experiment and created a test that adds the same insert ContentProviderOperation twice, the table has 'on conflict ignore' statement. the second insert doesn't get a row id. I run the same test on a GB emulator and the second insert does get a row id. – Gal Ben-Haim Nov 18 '12 at 17:57

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.