gtsam/cpp/testPose3Factor.cpp

24 lines
507 B
C++
Raw Normal View History

2009-12-18 09:24:28 +08:00
/**
* @file testPose3Pose.cpp
* @brief Unit tests for Pose3Factor Class
* @authors Frank Dellaert
**/
#include <iostream>
#include <CppUnitLite/TestHarness.h>
#include "Pose3Factor.h"
using namespace std;
using namespace gtsam;
TEST( Pose3Factor, constructor )
{
}
/* ************************************************************************* */
int main() {
TestResult tr;
return TestRegistry::runAllTests(tr);
}
/* ************************************************************************* */