mirror of
https://github.com/nasa/trick.git
synced 2024-12-29 01:18:54 +00:00
14a75508a3
Changed all header file once include variables to follow the same naming convention and not start with any underscores. Also deleted old incorrect copyright notices. Also removed $Id: tags from all files. Fixes #14. Fixes #22.
33 lines
680 B
C++
33 lines
680 B
C++
#include <iostream>
|
|
#include <sys/types.h>
|
|
#include <signal.h>
|
|
|
|
#include "gtest/gtest.h"
|
|
#include "sim_services/Clock/include/Clock.hh"
|
|
#include "sim_services/Clock/include/clock_proto.h"
|
|
#include "sim_services/Clock/include/GetTimeOfDayClock.hh"
|
|
#include "sim_services/Clock/include/TPROCTEClock.hh"
|
|
#include "sim_services/Clock/include/BC635Clock.hh"
|
|
#include "sim_services/SimObject/include/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) {
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|