How do you unit test Parcelable? I created a Parcelable class, and wrote this unit test
TestClass test = new TestClass();
Bundle bundle = new Bundle();
bundle.putParcelable("test", test);
TestClass testAfter = bundle.getParcelable("test");
assertEquals(testAfter.getStuff(), event1.getStuff());
I purposely try to fail the test by returning null in the createFromParcel(), but it seems to succeed. It looks like it doesn’t get parceled until it’s needed. How do I force the Bundle to..bundle?
I’ve found this link showing how you can unit test a parcelable object:
http://stuffikeepforgettinghowtodo.blogspot.nl/2009/02/unit-test-your-custom-parcelable.html
You can actually skip the
Bundleif you don’t really need to include it like zorch did his suggestion. You would then get something like this: