From 314552df993abd1fc57d3b33184730d13bb9ba19 Mon Sep 17 00:00:00 2001
From: Oliver Sander <oliver.sander@tu-dresden.de>
Date: Wed, 2 Mar 2022 18:23:42 +0100
Subject: [PATCH] Enable unit tests for the Rotation<3> class

---
 test/targetspacetest.cc | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/test/targetspacetest.cc b/test/targetspacetest.cc
index a677cd0e..6747a708 100644
--- a/test/targetspacetest.cc
+++ b/test/targetspacetest.cc
@@ -359,15 +359,18 @@ int main() try
     test<RealTuple<double,1> >();
     test<RealTuple<double,3> >();
     
+    // Test the UnitVector class
     test<UnitVector<double,2> >();
     test<UnitVector<double,3> >();
     test<UnitVector<double,4> >();
 
+    // Test the rotation class
+    test<Rotation<double,3> >();
+
+    // Test the ProductManifold class
     test<Dune::GFE::ProductManifold<RealTuple<double,1>,Rotation<double,3>,UnitVector<double,2>>>();
     test<Dune::GFE::ProductManifold<Rotation<double,3>,UnitVector<double,5>>>();
 
-//     test<Rotation<double,3> >();
-//
     // Test the RigidBodyMotion class
     test<RigidBodyMotion<double,3> >();
 //
-- 
GitLab