1/* ----------------------------------------------------------------------------
2
3 * GTSAM Copyright 2010, Georgia Tech Research Corporation,
4 * Atlanta, Georgia 30332-0415
5 * All Rights Reserved
6 * Authors: Frank Dellaert, et al. (see THANKS for the full author list)
7
8 * See LICENSE for the license information
9
10 * -------------------------------------------------------------------------- */
11
12///////////////////////////////////////////////////////////////////////////////
13//
14// TESTHARNESS.H
15//
16// The primary include file for the framework.
17//
18///////////////////////////////////////////////////////////////////////////////
19
20#ifndef TESTHARNESS_H
21#define TESTHARNESS_H
22
23#include "Test.h"
24#include "TestResult.h"
25#include "Failure.h"
26#include "TestRegistry.h"
27
28#endif
29
30