2015-02-26 15:02:31 +00:00
|
|
|
#include <iostream>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <signal.h>
|
2015-03-23 21:03:14 +00:00
|
|
|
|
2015-02-26 15:02:31 +00:00
|
|
|
#include "gtest/gtest.h"
|
2015-06-22 21:11:08 +00:00
|
|
|
#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-03-23 21:03:14 +00:00
|
|
|
|
2015-02-26 15:02:31 +00:00
|
|
|
protected:
|
|
|
|
Trick::GetTimeOfDayClock timclk;
|
|
|
|
|
|
|
|
GetTimeOfDayClockTest() {}
|
|
|
|
~GetTimeOfDayClockTest() {}
|
|
|
|
virtual void SetUp() {}
|
|
|
|
virtual void TearDown() {}
|
|
|
|
} ;
|
|
|
|
|
|
|
|
TEST_F(ClocksTest, ExampleTest) {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|