I'm using SQLDroid to do some batch upserts in my database, and I rely heavily on the result of the queries to know if my updates were succesful or if it had failed.
My preliminary non-confirmed tests indicates that for an unupdatable batch update, which I expected to have returned an array filled with 0s in the .executeBatch() , returns an array full of non-0s.
I couldn't find any unity test related to .executeBatch(). Is there one for it? Is it helpful for me to write one if it really is missing?
I'm using SQLDroid to do some batch upserts in my database, and I rely heavily on the result of the queries to know if my updates were succesful or if it had failed.
My preliminary non-confirmed tests indicates that for an unupdatable batch update, which I expected to have returned an array filled with 0s in the
.executeBatch(), returns an array full of non-0s.I couldn't find any unity test related to
.executeBatch(). Is there one for it? Is it helpful for me to write one if it really is missing?