30 lines
774 B
C
30 lines
774 B
C
/* ----------------------------------------------------------------------------
|
|
|
|
* GTSAM Copyright 2010, Georgia Tech Research Corporation,
|
|
* 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
|
|
|
|
* -------------------------------------------------------------------------- */
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// TESTHARNESS.H
|
|
//
|
|
// 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
|
|
|