diff --git a/gtsam_unstable/slam/tests/testProjectionFactorPPP.cpp b/gtsam_unstable/slam/tests/testProjectionFactorPPP.cpp index 3a7bf0cd0..7c370b534 100644 --- a/gtsam_unstable/slam/tests/testProjectionFactorPPP.cpp +++ b/gtsam_unstable/slam/tests/testProjectionFactorPPP.cpp @@ -49,12 +49,12 @@ using symbol_shorthand::T; typedef ProjectionFactorPPP TestProjectionFactor; /* ************************************************************************* */ -TEST( ProjectionFactor, nonStandard ) { +TEST( ProjectionFactorPPP, nonStandard ) { ProjectionFactorPPP f; } /* ************************************************************************* */ -TEST( ProjectionFactor, Constructor) { +TEST( ProjectionFactorPPP, Constructor) { Key poseKey(X(1)); Key transformKey(T(1)); Key pointKey(L(1)); @@ -65,7 +65,7 @@ TEST( ProjectionFactor, Constructor) { } /* ************************************************************************* */ -TEST( ProjectionFactor, ConstructorWithTransform) { +TEST( ProjectionFactorPPP, ConstructorWithTransform) { Key poseKey(X(1)); Key transformKey(T(1)); Key pointKey(L(1)); @@ -75,7 +75,7 @@ TEST( ProjectionFactor, ConstructorWithTransform) { } /* ************************************************************************* */ -TEST( ProjectionFactor, Equals ) { +TEST( ProjectionFactorPPP, Equals ) { // Create two identical factors and make sure they're equal Point2 measurement(323.0, 240.0); @@ -86,7 +86,7 @@ TEST( ProjectionFactor, Equals ) { } /* ************************************************************************* */ -TEST( ProjectionFactor, EqualsWithTransform ) { +TEST( ProjectionFactorPPP, EqualsWithTransform ) { // Create two identical factors and make sure they're equal Point2 measurement(323.0, 240.0); Pose3 body_P_sensor(Rot3::RzRyRx(-M_PI_2, 0.0, -M_PI_2), Point3(0.25, -0.10, 1.0)); @@ -98,7 +98,7 @@ TEST( ProjectionFactor, EqualsWithTransform ) { } /* ************************************************************************* */ -TEST( ProjectionFactor, Error ) { +TEST( ProjectionFactorPPP, Error ) { // Create the factor with a measurement that is 3 pixels off in x Key poseKey(X(1)); Key transformKey(T(1)); @@ -121,7 +121,7 @@ TEST( ProjectionFactor, Error ) { } /* ************************************************************************* */ -TEST( ProjectionFactor, ErrorWithTransform ) { +TEST( ProjectionFactorPPP, ErrorWithTransform ) { // Create the factor with a measurement that is 3 pixels off in x Key poseKey(X(1)); Key transformKey(T(1)); @@ -145,7 +145,7 @@ TEST( ProjectionFactor, ErrorWithTransform ) { } /* ************************************************************************* */ -TEST( ProjectionFactor, Jacobian ) { +TEST( ProjectionFactorPPP, Jacobian ) { // Create the factor with a measurement that is 3 pixels off in x Key poseKey(X(1)); Key transformKey(T(1)); @@ -179,7 +179,7 @@ TEST( ProjectionFactor, Jacobian ) { } /* ************************************************************************* */ -TEST( ProjectionFactor, JacobianWithTransform ) { +TEST( ProjectionFactorPPP, JacobianWithTransform ) { // Create the factor with a measurement that is 3 pixels off in x Key poseKey(X(1)); Key transformKey(T(1)); diff --git a/gtsam_unstable/slam/tests/testProjectionFactorPPPC.cpp b/gtsam_unstable/slam/tests/testProjectionFactorPPPC.cpp index 5b572fb69..36f7fdf52 100644 --- a/gtsam_unstable/slam/tests/testProjectionFactorPPPC.cpp +++ b/gtsam_unstable/slam/tests/testProjectionFactorPPPC.cpp @@ -50,19 +50,19 @@ using symbol_shorthand::K; typedef ProjectionFactorPPPC TestProjectionFactor; /* ************************************************************************* */ -TEST( ProjectionFactor, nonStandard ) { +TEST( ProjectionFactorPPPC, nonStandard ) { ProjectionFactorPPPC f; } /* ************************************************************************* */ -TEST( ProjectionFactor, Constructor) { +TEST( ProjectionFactorPPPC, Constructor) { Point2 measurement(323.0, 240.0); TestProjectionFactor factor(measurement, model, X(1), T(1), L(1), K(1)); // TODO: Actually check something } /* ************************************************************************* */ -TEST( ProjectionFactor, Equals ) { +TEST( ProjectionFactorPPPC, Equals ) { // Create two identical factors and make sure they're equal Point2 measurement(323.0, 240.0); @@ -73,7 +73,7 @@ TEST( ProjectionFactor, Equals ) { } /* ************************************************************************* */ -TEST( ProjectionFactor, Error ) { +TEST( ProjectionFactorPPPC, Error ) { // Create the factor with a measurement that is 3 pixels off in x Point2 measurement(323.0, 240.0); TestProjectionFactor factor(measurement, model, X(1), T(1), L(1), K(1)); @@ -93,7 +93,7 @@ TEST( ProjectionFactor, Error ) { } /* ************************************************************************* */ -TEST( ProjectionFactor, ErrorWithTransform ) { +TEST( ProjectionFactorPPPC, ErrorWithTransform ) { // Create the factor with a measurement that is 3 pixels off in x Point2 measurement(323.0, 240.0); Pose3 transform(Rot3::RzRyRx(-M_PI_2, 0.0, -M_PI_2), Point3(0.25, -0.10, 1.0)); @@ -114,7 +114,7 @@ TEST( ProjectionFactor, ErrorWithTransform ) { } /* ************************************************************************* */ -TEST( ProjectionFactor, Jacobian ) { +TEST( ProjectionFactorPPPC, Jacobian ) { // Create the factor with a measurement that is 3 pixels off in x Point2 measurement(323.0, 240.0); TestProjectionFactor factor(measurement, model, X(1), T(1), L(1), K(1)); @@ -149,7 +149,7 @@ TEST( ProjectionFactor, Jacobian ) { } /* ************************************************************************* */ -TEST( ProjectionFactor, JacobianWithTransform ) { +TEST( ProjectionFactorPPPC, JacobianWithTransform ) { // Create the factor with a measurement that is 3 pixels off in x Point2 measurement(323.0, 240.0); Pose3 body_P_sensor(Rot3::RzRyRx(-M_PI_2, 0.0, -M_PI_2), Point3(0.25, -0.10, 1.0));