aboutsummaryrefslogtreecommitdiffstats
path: root/tests/parser/messageIdSequenceTest.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/messageIdSequenceTest.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/messageIdSequenceTest.cpp')
-rw-r--r--tests/parser/messageIdSequenceTest.cpp11
1 files changed, 5 insertions, 6 deletions
diff --git a/tests/parser/messageIdSequenceTest.cpp b/tests/parser/messageIdSequenceTest.cpp
index bc5c7617..0237108d 100644
--- a/tests/parser/messageIdSequenceTest.cpp
+++ b/tests/parser/messageIdSequenceTest.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
@@ -32,8 +32,8 @@ VMIME_TEST_SUITE_BEGIN(messageIdSequenceTest)
VMIME_TEST_LIST_END
- void testParse()
- {
+ void testParse() {
+
vmime::messageIdSequence s1;
s1.parse("");
@@ -61,8 +61,8 @@ VMIME_TEST_SUITE_BEGIN(messageIdSequenceTest)
VASSERT_EQ("4.5", "d", s4.getMessageIdAt(1)->getRight());
}
- void testGenerate()
- {
+ void testGenerate() {
+
vmime::messageIdSequence s1;
s1.appendMessageId(vmime::make_shared <vmime::messageId>("a", "b"));
@@ -76,4 +76,3 @@ VMIME_TEST_SUITE_BEGIN(messageIdSequenceTest)
}
VMIME_TEST_SUITE_END
-