mirror of
https://github.com/nasa/fprime.git
synced 2025-12-12 07:43:50 -06:00
27 lines
488 B
C++
27 lines
488 B
C++
/*
|
|
* TestCommand1Impl.cpp
|
|
*
|
|
* Created on: Mar 28, 2014
|
|
* Author: tcanham
|
|
*/
|
|
|
|
#include <cstdio>
|
|
#include "TestTimeGetImpl.hpp"
|
|
|
|
TimeGetTesterImpl::TimeGetTesterImpl(const char* name) : TimeGet::TimeGetTesterComponentBase(name)
|
|
{
|
|
}
|
|
|
|
TimeGetTesterImpl::~TimeGetTesterImpl() {
|
|
}
|
|
|
|
void TimeGetTesterImpl::init() {
|
|
TimeGet::TimeGetTesterComponentBase::init();
|
|
}
|
|
|
|
void TimeGetTesterImpl::test_time_get_handler() {
|
|
this->getTime(); // Tests independent getTime() function
|
|
}
|
|
|
|
|