Merged Ross's patch to test code.

This commit is contained in:
Tatsuhiro Tsujikawa 2007-07-23 14:09:46 +00:00
parent 8d84d9f97c
commit 19ef788023
30 changed files with 173 additions and 107 deletions

View file

@ -61,7 +61,7 @@ void HttpHeaderProcessorTest::testGetPutBackDataLength()
"\r\nputbackme";
proc.update(hd1);
CPPUNIT_ASSERT(proc.eoh());
CPPUNIT_ASSERT_EQUAL(9, proc.getPutBackDataLength());
CPPUNIT_ASSERT_EQUAL((int32_t)9, proc.getPutBackDataLength());
proc.clear();
@ -69,7 +69,7 @@ void HttpHeaderProcessorTest::testGetPutBackDataLength()
"\nputbackme";
proc.update(hd2);
CPPUNIT_ASSERT(proc.eoh());
CPPUNIT_ASSERT_EQUAL(9, proc.getPutBackDataLength());
CPPUNIT_ASSERT_EQUAL((int32_t)9, proc.getPutBackDataLength());
}
void HttpHeaderProcessorTest::testGetPutBackDataLength_nullChar()
@ -79,7 +79,7 @@ void HttpHeaderProcessorTest::testGetPutBackDataLength_nullChar()
"foo: foo\0bar\r\n"
"\r\nputbackme", 35+7);
CPPUNIT_ASSERT(proc.eoh());
CPPUNIT_ASSERT_EQUAL(9, proc.getPutBackDataLength());
CPPUNIT_ASSERT_EQUAL((int32_t)9, proc.getPutBackDataLength());
}