Sort all includes in src/gromacs
[alexxy/gromacs.git] / src / gromacs / trajectoryanalysis / tests / distance.cpp
index f027bf39bd9feb169c28c628d9b7c4dbdbe329b4..5a63636346d0f6b1af0f47651165f3c62b894658 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * This file is part of the GROMACS molecular simulation package.
  *
- * Copyright (c) 2013, by the GROMACS development team, led by
+ * Copyright (c) 2013,2014, by the GROMACS development team, led by
  * Mark Abraham, David van der Spoel, Berk Hess, and Erik Lindahl,
  * and including many others, as listed in the AUTHORS file in the
  * top-level source directory and at http://www.gromacs.org.
  * \author Teemu Murtola <teemu.murtola@gmail.com>
  * \ingroup module_trajectoryanalysis
  */
-#include <gtest/gtest.h>
+#include "gmxpre.h"
 
 #include "gromacs/trajectoryanalysis/modules/distance.h"
 
+#include <gtest/gtest.h>
+
 #include "testutils/cmdlinetest.h"
 
 #include "moduletest.h"
@@ -68,7 +70,7 @@ TEST_F(DistanceModuleTest, ComputesDistances)
         "-len", "2", "-binw", "0.5"
     };
     setTopology("simple.gro");
-    runTest(CommandLine::create(cmdline));
+    runTest(CommandLine(cmdline));
 }
 
 TEST_F(DistanceModuleTest, ComputesMultipleDistances)
@@ -80,7 +82,7 @@ TEST_F(DistanceModuleTest, ComputesMultipleDistances)
         "-len", "2", "-binw", "0.5"
     };
     setTopology("simple.gro");
-    runTest(CommandLine::create(cmdline));
+    runTest(CommandLine(cmdline));
 }
 
 TEST_F(DistanceModuleTest, HandlesDynamicSelections)
@@ -91,7 +93,7 @@ TEST_F(DistanceModuleTest, HandlesDynamicSelections)
         "-len", "2", "-binw", "0.5"
     };
     setTopology("simple.gro");
-    runTest(CommandLine::create(cmdline));
+    runTest(CommandLine(cmdline));
 }
 
 } // namespace