2010-10-14 12:54:38 +08:00
|
|
|
/* ----------------------------------------------------------------------------
|
|
|
|
|
2019-02-11 22:39:48 +08:00
|
|
|
* GTSAM Copyright 2010, Georgia Tech Research Corporation,
|
2010-10-14 12:54:38 +08:00
|
|
|
* Atlanta, Georgia 30332-0415
|
|
|
|
* All Rights Reserved
|
|
|
|
* Authors: Frank Dellaert, et al. (see THANKS for the full author list)
|
|
|
|
|
|
|
|
* See LICENSE for the license information
|
|
|
|
|
|
|
|
* -------------------------------------------------------------------------- */
|
|
|
|
|
2009-08-22 06:23:24 +08:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// TESTHARNESS.H
|
2019-02-11 22:39:48 +08:00
|
|
|
//
|
2009-08-22 06:23:24 +08:00
|
|
|
// The primary include file for the framework.
|
|
|
|
//
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef TESTHARNESS_H
|
|
|
|
#define TESTHARNESS_H
|
|
|
|
|
|
|
|
#include "Test.h"
|
|
|
|
#include "TestResult.h"
|
|
|
|
#include "Failure.h"
|
|
|
|
#include "TestRegistry.h"
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|