@Test
public void testParsingOldSodaServerUpsertResults() throws IOException
{
UpsertResult noErrors = Soda2Producer.deserializeUpsertResult(new ByteArrayInputStream(SODA_SERVER_UPSERT_RESULT_NO_ERRORS_OLD.getBytes("utf-8")));
TestCase.assertEquals(0, noErrors.errorCount());
TestCase.assertEquals(3, noErrors.getRowsCreated());
TestCase.assertEquals(0, noErrors.getRowsUpdated());
TestCase.assertEquals(0, noErrors.getRowsDeleted());
UpsertResult errors1 = Soda2Producer.deserializeUpsertResult(new ByteArrayInputStream(SODA_SERVER_UPSERT_RESULT_1_OLD.getBytes("utf-8")));