2008-03-09 Tatsuhiro Tsujikawa <tujikawa at rednoah dot com>

type cleanup for allmost all remaining files.
This commit is contained in:
Tatsuhiro Tsujikawa 2008-03-09 12:24:01 +00:00
parent ca3f6e57f3
commit 032c7c2808
278 changed files with 1489 additions and 1517 deletions

View file

@ -66,7 +66,7 @@ void HttpResponseTest::testGetContentLength_null()
{
HttpResponse httpResponse;
CPPUNIT_ASSERT_EQUAL((int64_t)0, httpResponse.getContentLength());
CPPUNIT_ASSERT_EQUAL(0ULL, httpResponse.getContentLength());
}
void HttpResponseTest::testGetContentLength_contentLength()
@ -78,7 +78,7 @@ void HttpResponseTest::testGetContentLength_contentLength()
httpResponse.setHttpHeader(httpHeader);
CPPUNIT_ASSERT_EQUAL((int64_t)4294967296LL, httpResponse.getContentLength());
CPPUNIT_ASSERT_EQUAL(4294967296ULL, httpResponse.getContentLength());
}
void HttpResponseTest::testGetEntityLength()
@ -90,11 +90,11 @@ void HttpResponseTest::testGetEntityLength()
httpResponse.setHttpHeader(httpHeader);
CPPUNIT_ASSERT_EQUAL((int64_t)4294967296LL, httpResponse.getEntityLength());
CPPUNIT_ASSERT_EQUAL(4294967296ULL, httpResponse.getEntityLength());
httpHeader->put("Content-Range", "bytes 1-4294967296/4294967297");
CPPUNIT_ASSERT_EQUAL((int64_t)4294967297LL, httpResponse.getEntityLength());
CPPUNIT_ASSERT_EQUAL(4294967297ULL, httpResponse.getEntityLength());
}