aboutsummaryrefslogtreecommitdiffstats
path: root/tests/parser/emptyContentHandlerTest.cpp
diff options
context:
space:
mode:
authorVincent Richard <[email protected]>2018-09-05 21:54:48 +0000
committerVincent Richard <[email protected]>2018-09-05 21:54:48 +0000
commitb55bdc9c0bb68236aa2de0a8eaec9f4c80cc2769 (patch)
treeefa18d623d3bc67c41d643aae145c16aa8f1006d /tests/parser/emptyContentHandlerTest.cpp
parentMerge pull request #198 from xguerin/master (diff)
downloadvmime-b55bdc9c0bb68236aa2de0a8eaec9f4c80cc2769.tar.gz
vmime-b55bdc9c0bb68236aa2de0a8eaec9f4c80cc2769.zip
Code style and clarity.
Diffstat (limited to 'tests/parser/emptyContentHandlerTest.cpp')
-rw-r--r--tests/parser/emptyContentHandlerTest.cpp26
1 files changed, 13 insertions, 13 deletions
diff --git a/tests/parser/emptyContentHandlerTest.cpp b/tests/parser/emptyContentHandlerTest.cpp
index 81e2ed6b..43cd8c2b 100644
--- a/tests/parser/emptyContentHandlerTest.cpp
+++ b/tests/parser/emptyContentHandlerTest.cpp
@@ -1,6 +1,6 @@
//
// VMime library (http://www.vmime.org)
-// Copyright (C) 2002-2013 Vincent Richard <[email protected]>
+// Copyright (C) 2002 Vincent Richard <[email protected]>
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License as
@@ -38,30 +38,30 @@ VMIME_TEST_SUITE_BEGIN(emptyContentHandlerTest)
VMIME_TEST_LIST_END
- void testIsEmpty()
- {
+ void testIsEmpty() {
+
vmime::emptyContentHandler cth;
VASSERT_TRUE("empty", cth.isEmpty());
}
- void testGetLength()
- {
+ void testGetLength() {
+
vmime::emptyContentHandler cth;
VASSERT_EQ("length", 0, cth.getLength());
}
- void testIsEncoded()
- {
+ void testIsEncoded() {
+
vmime::emptyContentHandler cth;
VASSERT_FALSE("encoded", cth.isEncoded());
VASSERT_EQ("encoding", vmime::contentHandler::NO_ENCODING, cth.getEncoding());
}
- void testExtract()
- {
+ void testExtract() {
+
vmime::emptyContentHandler cth;
std::ostringstream oss;
@@ -72,8 +72,8 @@ VMIME_TEST_SUITE_BEGIN(emptyContentHandlerTest)
VASSERT_EQ("extract", "", oss.str());
}
- void testExtractRaw()
- {
+ void testExtractRaw() {
+
vmime::emptyContentHandler cth;
std::ostringstream oss;
@@ -84,8 +84,8 @@ VMIME_TEST_SUITE_BEGIN(emptyContentHandlerTest)
VASSERT_EQ("extractRaw", "", oss.str());
}
- void testGenerate()
- {
+ void testGenerate() {
+
vmime::emptyContentHandler cth;
std::ostringstream oss;