We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2e42704 commit 6da7fa3Copy full SHA for 6da7fa3
1 file changed
test/test_integrator.cpp
@@ -41,7 +41,7 @@
41
#include <ergodic_exploration/models/omni.hpp>
42
#include <ergodic_exploration/integrator.hpp>
43
44
-TEST(RungeKuttaTest, Simulate)
+TEST(IntegratorTest, RungeKutta)
45
{
46
const ergodic_exploration::models::Cart cart(0.1, 2.0);
47
const auto horizon = 0.4;
@@ -72,9 +72,8 @@ TEST(RungeKuttaTest, Simulate)
72
ASSERT_DOUBLE_EQ(xt(2, 3), 0.0);
73
}
74
75
-TEST(IntegrateTwistTest, OmniPoseChange)
+TEST(IntegratorTest, OmniPoseChange)
76
77
- const auto horizon = 1.0;
78
const auto dt = 0.1;
79
const arma::vec vb = { 1.0, 0.5, 0.5 };
80
const arma::vec x0(3, arma::fill::zeros);
@@ -93,7 +92,7 @@ TEST(IntegrateTwistTest, OmniPoseChange)
93
92
ASSERT_NEAR(pose(2), 0.0500, 1e-4);
94
95
96
-TEST(IntegrateTwistTest, OmniTrajectory)
+TEST(IntegratorTest, OmniTrajectory)
97
98
const auto horizon = 0.5;
99
0 commit comments