trick/trick_source/sim_services/Clock/test/Clocks_test.cpp

33 lines
550 B
C++
Raw Normal View History

2015-02-26 15:02:31 +00:00
#include <iostream>
#include <sys/types.h>
#include <signal.h>
2015-02-26 15:02:31 +00:00
#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"
2015-02-26 15:02:31 +00:00
namespace Trick {
class ClocksTest : public ::testing::Test {
2015-02-26 15:02:31 +00:00
protected:
Trick::GetTimeOfDayClock timclk;
GetTimeOfDayClockTest() {}
~GetTimeOfDayClockTest() {}
virtual void SetUp() {}
virtual void TearDown() {}
} ;
TEST_F(ClocksTest, ExampleTest) {
}
}