trick/trick_source/sim_services/Clock/test/Clocks_test.cpp
Alex Lin d3acfa5fc0 Test code does not work with new directory locations.
Adjusted all of the source code to point to the header files in their new
locations.  Adjusted the makefiles for the header locations as well.
Added .gitignore files in the test directories to ignore test object code.
2015-06-22 16:11:08 -05:00

33 lines
550 B
C++

#include <iostream>
#include <sys/types.h>
#include <signal.h>
#include "gtest/gtest.h"
#include "trick/Clock.hh"
#include "trick/clock_proto.h"
#include "trick/GetTimeOfDayClock.hh"
#include "trick/TPROCTEClock.hh"
#include "trick/BC635Clock.hh"
#include "trick/JobData.hh"
namespace Trick {
class ClocksTest : public ::testing::Test {
protected:
Trick::GetTimeOfDayClock timclk;
GetTimeOfDayClockTest() {}
~GetTimeOfDayClockTest() {}
virtual void SetUp() {}
virtual void TearDown() {}
} ;
TEST_F(ClocksTest, ExampleTest) {
}
}