mirror of
https://github.com/aria2/aria2.git
synced 2025-04-05 21:47:37 +03:00
make clang-format using clang-format-3.6
This commit is contained in:
parent
4abad2f64c
commit
b1132d6b10
1095 changed files with 30423 additions and 33770 deletions
|
@ -7,16 +7,16 @@
|
|||
|
||||
namespace aria2 {
|
||||
|
||||
class GZipEncoderTest:public CppUnit::TestFixture {
|
||||
class GZipEncoderTest : public CppUnit::TestFixture {
|
||||
|
||||
CPPUNIT_TEST_SUITE(GZipEncoderTest);
|
||||
CPPUNIT_TEST(testEncode);
|
||||
CPPUNIT_TEST_SUITE_END();
|
||||
|
||||
public:
|
||||
void testEncode();
|
||||
};
|
||||
|
||||
|
||||
CPPUNIT_TEST_SUITE_REGISTRATION(GZipEncoderTest);
|
||||
|
||||
void GZipEncoderTest::testEncode()
|
||||
|
@ -38,8 +38,8 @@ void GZipEncoderTest::testEncode()
|
|||
GZipDecoder decoder;
|
||||
decoder.init();
|
||||
std::string gunzippedData =
|
||||
decoder.decode(reinterpret_cast<const unsigned char*>(gzippedData.data()),
|
||||
gzippedData.size());
|
||||
decoder.decode(reinterpret_cast<const unsigned char*>(gzippedData.data()),
|
||||
gzippedData.size());
|
||||
CPPUNIT_ASSERT(decoder.finished());
|
||||
CPPUNIT_ASSERT_EQUAL(strjoin(inputs.begin(), inputs.end(), ""),
|
||||
gunzippedData);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue