Reputation: 3481
I am trying to test to write to a Parcel in Android test but it doesnt't work. s==null! What is wrong?
public class scraptest extends AndroidTestCase {
public void test() {
Parcel parcel=Parcel.obtain();
parcel.writeString("sdfsdf");
String s=parcel.readString();
}
}
Upvotes: 1
Views: 333
Reputation: 3481
One must reset the Parcel's data position with: parcel.setDataPosition(0);
Upvotes: 3