mirror of
https://github.com/nasa/trick.git
synced 2024-12-19 13:17:55 +00:00
d3acfa5fc0
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.
33 lines
550 B
C++
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) {
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|