30 lines
		
	
	
		
			772 B
		
	
	
	
		
			C
		
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			772 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
 | 
						|
 |