Code beautification with uncrustify
[alexxy/gromacs.git] / src / gromacs / onlinehelp / tests / helpmanager.cpp
index 5eed058804f5a1287b5393a4b75e32c409b85b4d..d9123e95b32ff638cb36700b3ed1f3e330ba6087 100644 (file)
@@ -62,11 +62,11 @@ class HelpTestBase : public gmx::test::StringTestBase
         HelpTestBase();
 
         gmx::test::TestFileManager tempFiles_;
-        MockHelpTopic           rootTopic_;
-        std::string             filename_;
-        gmx::File               helpFile_;
-        gmx::HelpWriterContext  context_;
-        gmx::HelpManager        manager_;
+        MockHelpTopic              rootTopic_;
+        std::string                filename_;
+        gmx::File                  helpFile_;
+        gmx::HelpWriterContext     context_;
+        gmx::HelpManager           manager_;
 };
 
 HelpTestBase::HelpTestBase()
@@ -127,14 +127,14 @@ TEST_F(HelpManagerTest, HandlesInvalidTopics)
 
 struct TestHelpText
 {
-    static const char name[];
-    static const char title[];
+    static const char        name[];
+    static const char        title[];
     static const char *const text[];
 };
 
-const char TestHelpText::name[] = "testtopic";
-const char TestHelpText::title[] = "Topic title";
-const char *const TestHelpText::text[] = {
+const char        TestHelpText::name[]  = "testtopic";
+const char        TestHelpText::title[] = "Topic title";
+const char *const TestHelpText::text[]  = {
     "Test topic text.[PAR]",
     "Another paragraph of text."
 };
@@ -157,7 +157,7 @@ void HelpTopicFormattingTest::checkHelpFormatting()
 TEST_F(HelpTopicFormattingTest, FormatsSimpleTopic)
 {
     rootTopic_.addSubTopic(gmx::HelpTopicPointer(
-                new gmx::SimpleHelpTopic<TestHelpText>));
+                                   new gmx::SimpleHelpTopic<TestHelpText>));
     checkHelpFormatting();
 }