trick/trick_source/sim_services/Clock/test/Clocks_test.cpp
2021-08-02 11:49:39 -05:00

31 lines
486 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/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) {
}
}