Rework -Weverything
[alexxy/gromacs.git] / api / nblib / listed_forces / tests / typetests.cpp
index 15d7e35fdbe5386e55cdfcbb1f37806fb9917117..b67f3b6f540f92ec324be68d0d26b76e2ec92b82 100644 (file)
@@ -52,6 +52,9 @@ namespace nblib
 //! Number of atoms used in these tests.
 constexpr int c_numAtoms = 4;
 
+namespace
+{
+
 //! Coordinates for testing
 std::vector<std::vector<gmx::RVec>> c_coordinatesForTests = {
     { { 0.0, 0.0, 0.0 }, { 0.0, 0.0, 0.2 }, { 0.005, 0.0, 0.1 }, { -0.001, 0.1, 0.0 } },
@@ -71,6 +74,8 @@ std::vector<std::vector<ProperDihedral>> c_InputDihs = { { { ProperDihedral(Degr
 // Todo: update test setup to allow more than one interaction type and add the following to the inputs
 // std::vector<std::vector<RyckaertBellemanDihedral>> c_InputDihs = { { RyckaertBellemanDihedral({ -7.35, 13.6, 8.4, -16.7, 1.3, 12.4 }) } };
 
+} // namespace
+
 template<class Interaction>
 class ListedForcesBase
 {