20 lines
458 B
C++
20 lines
458 B
C++
|
/**
|
||
|
* @file testSymbolicFactor.cpp
|
||
|
* @brief Unit tests for a symbolic Factor
|
||
|
* @author Frank Dellaert
|
||
|
*/
|
||
|
|
||
|
#include <CppUnitLite/TestHarness.h>
|
||
|
|
||
|
#include "SymbolicFactor.h"
|
||
|
|
||
|
using namespace std;
|
||
|
using namespace gtsam;
|
||
|
|
||
|
/* ************************************************************************* */
|
||
|
int main() {
|
||
|
TestResult tr;
|
||
|
return TestRegistry::runAllTests(tr);
|
||
|
}
|
||
|
/* ************************************************************************* */
|