Refactor mdrun integration tests
[alexxy/gromacs.git] / src / testutils / integrationtests.h
index a610e5c7e4bcd4852ce32d8ebda1eb7e3d7f5089..f62da517671225d36fce96004ecef0a5da79726f 100644 (file)
@@ -75,28 +75,28 @@ class IntegrationTestFixture : public ::testing::Test
          */
         void redirectStringToStdin(const char* theString);
 
-        /*! Discards stdout while running a test
+        /*! \brief Discards stdout while running a test
          *
          * \todo Implement this when the output routines are
          * sufficiently modular to permit it to work. */
         void redirectStdoutToDevNull();
-        /*! Discards stderr while running a test
+        /*! \brief Discards stderr while running a test
          *
          * \todo Implement this when the output routines are
          * sufficiently modular to permit it to work. */
         void redirectStderrToDevNull();
 
-        /* TEST_F() constructs derived classes, and those classes
-         * might need to access implementation details, so we
-         * cannot use the private access specifer here. */
-    protected:
+        /* TEST_F() constructs derived classes, and those classes and
+         * their member objects might need to access implementation
+         * details, so we cannot use the private access specifer
+         * here. */
+    public:
 
         /*! \brief Object that manages finding input files, writing
          * temporary output files and cleaning up files.
          */
         ::gmx::test::TestFileManager fileManager_;
 
-    public:
         //! Number of backup files to write
         static std::string s_maxBackup;
 };