repo_name stringclasses 10
values | file_path stringlengths 29 222 | content stringlengths 24 926k | extention stringclasses 5
values |
|---|---|---|---|
fprime | data/projects/fprime/Svc/SystemResources/test/ut/SystemResourcesTestMain.cpp | // ----------------------------------------------------------------------
// TestMain.cpp
// ----------------------------------------------------------------------
#include "SystemResourcesTester.hpp"
TEST(Nominal, Telemetry) {
Svc::SystemResourcesTester tester;
tester.test_tlm();
}
TEST(OffNominal, Disabled... | cpp |
fprime | data/projects/fprime/Svc/SystemResources/test/ut/SystemResourcesTester.cpp | // ======================================================================
// \title SystemResources.hpp
// \author mstarch
// \brief cpp file for SystemResources test harness implementation class
//
// \copyright
// Copyright 2009-2015, by the California Institute of Technology.
// ALL RIGHTS RESERVED. United States... | cpp |
fprime | data/projects/fprime/Svc/PolyDb/PolyDb.hpp | // ======================================================================
// PolyDb.hpp
// Standardization header for PolyDb
// ======================================================================
#ifndef Svc_PolyDb_HPP
#define Svc_PolyDb_HPP
#include "Svc/PolyDb/PolyDbImpl.hpp"
namespace Svc {
typedef PolyDbIm... | hpp |
fprime | data/projects/fprime/Svc/PolyDb/PolyDbImpl.cpp | /*
* PolyDbImpl.cpp
*
* Created on: May 13, 2014
* Author: Timothy Canham
*/
#include <Svc/PolyDb/PolyDbImpl.hpp>
#include <Fw/Types/Assert.hpp>
#include <FpConfig.hpp>
namespace Svc {
PolyDbImpl::PolyDbImpl(const char* name) : PolyDbComponentBase(name) {
// initialize all entries to stale
... | cpp |
fprime | data/projects/fprime/Svc/PolyDb/PolyDbImpl.hpp | /**
* \file
* \author T. Canham
* \brief PolyDb is a database for storing telemetry for internal software use
*
* \copyright
* Copyright 2009-2015, by the California Institute of Technology.
* ALL RIGHTS RESERVED. United States Government Sponsorship
* acknowledged.
* <br /><br />
*/
#ifndef POLYDBIMPL_HPP_
... | hpp |
fprime | data/projects/fprime/Svc/PolyDb/test/ut/PolyDbImplTester.cpp | /*
* PolyDbImplTester.cpp
*
* Created on: Sept 14, 2015
* Author: tcanham
*/
#include <Svc/PolyDb/test/ut/PolyDbImplTester.hpp>
#include <cstdio>
#include <gtest/gtest.h>
#include <Fw/Test/UnitTest.hpp>
namespace Svc {
void PolyDbImplTester::init(NATIVE_INT_TYPE instance) {
Svc::PolyDbTesterCo... | cpp |
fprime | data/projects/fprime/Svc/PolyDb/test/ut/PolyDbTester.cpp | /*
* PolyDbTester.cpp
*
* Created on: Sept 14, 2015
* Author: tcanham
*/
#include <Svc/PolyDb/test/ut/PolyDbImplTester.hpp>
#include <Svc/PolyDb/PolyDbImpl.hpp>
#include <Fw/Obj/SimpleObjRegistry.hpp>
#include <gtest/gtest.h>
#include <Fw/Test/UnitTest.hpp>
void connectPorts(Svc::PolyDbImpl& impl, Svc::Pol... | cpp |
fprime | data/projects/fprime/Svc/PolyDb/test/ut/PolyDbImplTester.hpp | /*
* PolyDbImplTester.hpp
*
* Created on: Sept 14, 2015
* Author: tcanham
*/
#ifndef POLYDB_TEST_UT_TLMCHANIMPLTESTER_HPP_
#define POLYDB_TEST_UT_TLMCHANIMPLTESTER_HPP_
#include <Svc/PolyDb/test/ut/PolyDbComponentTestAc.hpp>
#include <Svc/PolyDb/PolyDbImpl.hpp>
namespace Svc {
class PolyDbImplTester:... | hpp |
fprime | data/projects/fprime/Svc/PolyDb/test/ut/PolyDbComponentTestAc.hpp | /*
* PolyDbComponentTestAc.hpp
*
* Created on: Monday, 14 September 2015
* Author: tcanham
*
*/
#ifndef POLYDBCOMP_TESTER_HPP_
#define POLYDBCOMP_TESTER_HPP_
#include <FpConfig.hpp>
#include <Fw/Comp/PassiveComponentBase.hpp>
// type includes
#include <Fw/Types/PolyType.hpp>
#include <Fw/Time/Time.hpp>
/... | hpp |
fprime | data/projects/fprime/Svc/PolyDb/test/ut/PolyDbComponentTestAc.cpp | #include <cstdio>
#include <FpConfig.hpp>
// The following header will need to be modified when test code is moved
// If the component tester is regenerated, this will need to be modified again.
// Make the compile fail to make sure it is changed
#include <Svc/PolyDb/test/ut/PolyDbComponentTestAc.hpp>
#include <Fw/Type... | cpp |
fprime | data/projects/fprime/Svc/AssertFatalAdapter/AssertFatalAdapterComponentImpl.hpp | // ======================================================================
// \title AssertFatalAdapterImpl.hpp
// \author tcanham
// \brief hpp file for AssertFatalAdapter component implementation class
//
// \copyright
// Copyright 2009-2015, by the California Institute of Technology.
// ALL RIGHTS RESERVED. United... | hpp |
fprime | data/projects/fprime/Svc/AssertFatalAdapter/AssertFatalAdapterComponentImpl.cpp | // ======================================================================
// \title AssertFatalAdapterImpl.cpp
// \author tcanham
// \brief cpp file for AssertFatalAdapter component implementation class
//
// \copyright
// Copyright 2009-2015, by the California Institute of Technology.
// ALL RIGHTS RESERVED. United... | cpp |
fprime | data/projects/fprime/Svc/AssertFatalAdapter/AssertFatalAdapter.hpp | // ======================================================================
// AssertFatalAdapter.hpp
// Standardization header for AssertFatalAdapter
// ======================================================================
#ifndef Svc_AssertFatalAdapter_HPP
#define Svc_AssertFatalAdapter_HPP
#include "Svc/AssertFatal... | hpp |
fprime | data/projects/fprime/Svc/AssertFatalAdapter/test/ut/main.cpp | #include "AssertFatalAdapterTester.hpp"
TEST(Nominal,NominalInit) {
Svc::AssertFatalAdapterTester tester;
tester.testAsserts();
}
int main(int argc, char* argv[]) {
::testing::InitGoogleTest(&argc, argv);
return RUN_ALL_TESTS();
}
| cpp |
fprime | data/projects/fprime/Svc/AssertFatalAdapter/test/ut/AssertFatalAdapterTester.hpp | // ======================================================================
// \title AssertFatalAdapter/test/ut/Tester.hpp
// \author tcanham
// \brief hpp file for AssertFatalAdapter test harness implementation class
//
// \copyright
// Copyright 2009-2015, by the California Institute of Technology.
// ALL RIGHTS RES... | hpp |
fprime | data/projects/fprime/Svc/AssertFatalAdapter/test/ut/AssertFatalAdapterTester.cpp | // ======================================================================
// \title AssertFatalAdapter.hpp
// \author tcanham
// \brief cpp file for AssertFatalAdapter test harness implementation class
//
// \copyright
// Copyright 2009-2015, by the California Institute of Technology.
// ALL RIGHTS RESERVED. United ... | cpp |
fprime | data/projects/fprime/Svc/BufferRepeater/BufferRepeater.hpp | // ======================================================================
// \title BufferRepeater.hpp
// \author lestarch
// \brief hpp file for GenericRepeater component implementation class
//
// \copyright
// Copyright 2009-2015, by the California Institute of Technology.
// ALL RIGHTS RESERVED. United States Go... | hpp |
fprime | data/projects/fprime/Svc/BufferRepeater/BufferRepeater.cpp | // ======================================================================
// \title BufferRepeater.cpp
// \author lestarch
// \brief cpp file for GenericRepeater component implementation class
//
// \copyright
// Copyright 2009-2015, by the California Institute of Technology.
// ALL RIGHTS RESERVED. United States Go... | cpp |
fprime | data/projects/fprime/Svc/BufferRepeater/test/ut/BufferRepeaterTestMain.cpp | // ----------------------------------------------------------------------
// TestMain.cpp
// ----------------------------------------------------------------------
#include "BufferRepeaterTester.hpp"
TEST(Nominal, TestRepeater) {
Svc::BufferRepeaterTester tester;
tester.testRepeater();
}
TEST(OffNominal, NoM... | cpp |
fprime | data/projects/fprime/Svc/BufferRepeater/test/ut/BufferRepeaterTester.hpp | // ======================================================================
// \title BufferRepeater/test/ut/Tester.hpp
// \author lestarch
// \brief hpp file for GenericRepeater test harness implementation class
//
// \copyright
// Copyright 2009-2015, by the California Institute of Technology.
// ALL RIGHTS RESERVED.... | hpp |
fprime | data/projects/fprime/Svc/BufferRepeater/test/ut/BufferRepeaterTester.cpp | // ======================================================================
// \title BufferRepeater.hpp
// \author lestarch
// \brief cpp file for BufferRepeater test harness implementation class
// ======================================================================
#include "BufferRepeaterTester.hpp"
#define INS... | cpp |
fprime | data/projects/fprime/Svc/Deframer/Deframer.hpp | // ======================================================================
// \title Deframer.hpp
// \author mstarch, bocchino
// \brief hpp file for Deframer component implementation class
//
// \copyright
// Copyright 2009-2022, by the California Institute of Technology.
// ALL RIGHTS RESERVED. United States Govern... | hpp |
fprime | data/projects/fprime/Svc/Deframer/Deframer.cpp | // ======================================================================
// \title Deframer.cpp
// \author mstarch, bocchino
// \brief cpp file for Deframer component implementation class
//
// \copyright
// Copyright 2009-2022, by the California Institute of Technology.
// ALL RIGHTS RESERVED. United States Govern... | cpp |
fprime | data/projects/fprime/Svc/Deframer/test/ut/DeframerTestMain.cpp | // ----------------------------------------------------------------------
// TestMain.cpp
// ----------------------------------------------------------------------
#include "DeframerTester.hpp"
#include <Fw/Test/UnitTest.hpp>
#include <Svc/FramingProtocol/DeframingProtocol.hpp>
TEST(Deframer, TestMoreNeeded) {
CO... | cpp |
fprime | data/projects/fprime/Svc/Deframer/test/ut/DeframerTester.hpp | // ======================================================================
// \title Deframer/test/ut/Tester.hpp
// \author janamian, bocchino
// \brief hpp file for Deframer test harness implementation class
//
// \copyright
// Copyright 2009-2021, by the California Institute of Technology.
// ALL RIGHTS RESERVED. U... | hpp |
fprime | data/projects/fprime/Svc/Deframer/test/ut/DeframerTester.cpp | // ======================================================================
// \title Deframer.hpp
// \author janamian, bocchino
// \brief cpp file for Deframer test harness implementation class
//
// \copyright
// Copyright 2009-2021, by the California Institute of Technology.
// ALL RIGHTS RESERVED. United States Go... | cpp |
fprime | data/projects/fprime/Svc/Deframer/test/ut-fprime-protocol/DeframerTestMain.cpp | // ----------------------------------------------------------------------
// TestMain.cpp
// ----------------------------------------------------------------------
#include <gtest/gtest.h>
#include "Fw/Test/UnitTest.hpp"
#include "GenerateFrames.hpp"
#include "Os/Log.hpp"
#include "STest/Scenario/BoundedScenario.hpp"... | cpp |
fprime | data/projects/fprime/Svc/Deframer/test/ut-fprime-protocol/GenerateFrames.cpp | //! ======================================================================
//! \title GenerateFrames.cpp
//! \brief Implementation file for GenerateFrames rule
//! \author mstarch, bocchino
//! ======================================================================
#include "GenerateFrames.hpp"
#include "Printing.hpp"
... | cpp |
fprime | data/projects/fprime/Svc/Deframer/test/ut-fprime-protocol/DeframerTester.hpp | // ======================================================================
// \title DeframerTester.hpp
// \brief Header file for Deframer test with F Prime protocol
// \author mstarch, bocchino
//
// \copyright
// Copyright 2009-2022, by the California Institute of Technology.
// ALL RIGHTS RESERVED. United States G... | hpp |
fprime | data/projects/fprime/Svc/Deframer/test/ut-fprime-protocol/SendBuffer.hpp | //! ======================================================================
//! \title SendBuffer.hpp
//! \brief Header file for SendBuffer rule
//! \author lestarch, bocchino
//! ======================================================================
#ifndef SVC_SEND_BUFFER_HPP
#define SVC_SEND_BUFFER_HPP
#include <Fp... | hpp |
fprime | data/projects/fprime/Svc/Deframer/test/ut-fprime-protocol/SendBuffer.cpp | //! ======================================================================
//! \title SendBuffer.cpp
//! \brief Implementation file for SendBuffer rule
//! \author mstarch, bocchino
//! ======================================================================
#include "Printing.hpp"
#include "STest/Pick/Pick.hpp"
#includ... | cpp |
fprime | data/projects/fprime/Svc/Deframer/test/ut-fprime-protocol/GenerateFrames.hpp | //! ======================================================================
//! \title DeframerRules.hpp
//! \brief Header file for GenerateFrames rule
//! \author lestarch, bocchino
//! ======================================================================
#ifndef SVC_GENERATE_FRAMES_HPP
#define SVC_GENERATE_FRAMES_HP... | hpp |
fprime | data/projects/fprime/Svc/Deframer/test/ut-fprime-protocol/DeframerTester.cpp | // ======================================================================
// \title DeframerTester.cpp
// \brief Implementation file for Deframer test with F Prime protocol
// \author mstarch, bocchino
//
// \copyright
// Copyright 2009-2022, by the California Institute of Technology.
// ALL RIGHTS RESERVED. United ... | cpp |
fprime | data/projects/fprime/Svc/Deframer/test/ut-fprime-protocol/UplinkFrame.cpp | // ======================================================================
// \title UplinkFrame.cpp
// \author mstarch, bocchino
// \brief Implementation file for DeframerTester::UplinkFrame
//
// \copyright
// Copyright 2009-2022, by the California Institute of Technology.
// ALL RIGHTS RESERVED. United States Gove... | cpp |
fprime | data/projects/fprime/Svc/Deframer/test/ut-fprime-protocol/Printing.hpp | //! ======================================================================
//! \title Printing.hpp
//! \brief Print macros for deframer unit tests
//! \author bocchino
//! ======================================================================
// Uncomment the following line to turn on printing
//#define PRINTING
#ifd... | hpp |
fprime | data/projects/fprime/Svc/FatalHandler/FatalHandlerComponentImpl.hpp | // ======================================================================
// \title FatalHandlerImpl.hpp
// \author tcanham
// \brief hpp file for FatalHandler component implementation class
//
// \copyright
// Copyright 2009-2015, by the California Institute of Technology.
// ALL RIGHTS RESERVED. United States Gove... | hpp |
fprime | data/projects/fprime/Svc/FatalHandler/FatalHandler.hpp | // ======================================================================
// FatalHandler.hpp
// Standardization header for FatalHandler
// ======================================================================
#ifndef Svc_FatalHandler_HPP
#define Svc_FatalHandler_HPP
#include "Svc/FatalHandler/FatalHandlerComponentI... | hpp |
fprime | data/projects/fprime/Svc/FatalHandler/FatalHandlerComponentVxWorksImpl.cpp | // ======================================================================
// \title FatalHandlerImpl.cpp
// \author tcanham
// \brief cpp file for FatalHandler component implementation class
//
// \copyright
// Copyright 2009-2015, by the California Institute of Technology.
// ALL RIGHTS RESERVED. United States Gove... | cpp |
fprime | data/projects/fprime/Svc/FatalHandler/FatalHandlerComponentLinuxImpl.cpp | // ======================================================================
// \title FatalHandlerImpl.cpp
// \author tcanham
// \brief cpp file for FatalHandler component implementation class
//
// \copyright
// Copyright 2009-2015, by the California Institute of Technology.
// ALL RIGHTS RESERVED. United States Gove... | cpp |
fprime | data/projects/fprime/Svc/FatalHandler/FatalHandlerComponentBaremetalImpl.cpp | // ======================================================================
// \title FatalHandlerImpl.cpp
// \author lestarch
// \brief cpp file for FatalHandler component implementation class
// ======================================================================
#include <cstdlib>
#include <Os/Log.hpp>
#include <... | cpp |
fprime | data/projects/fprime/Svc/FatalHandler/FatalHandlerComponentCommonImpl.cpp | // ======================================================================
// \title FatalHandlerImpl.cpp
// \author tcanham
// \brief cpp file for FatalHandler component implementation class
//
// \copyright
// Copyright 2009-2015, by the California Institute of Technology.
// ALL RIGHTS RESERVED. United States Gove... | cpp |
fprime | data/projects/fprime/Svc/ComLogger/ComLogger.cpp | // ----------------------------------------------------------------------
//
// ComLogger.cpp
//
// ----------------------------------------------------------------------
#include <Svc/ComLogger/ComLogger.hpp>
#include <FpConfig.hpp>
#include <Fw/Types/SerialBuffer.hpp>
#include <Fw/Types/StringUtils.hpp>
#include <Os... | cpp |
fprime | data/projects/fprime/Svc/ComLogger/ComLogger.hpp | // ----------------------------------------------------------------------
//
// ComLogger.hpp
//
// ----------------------------------------------------------------------
#ifndef Svc_ComLogger_HPP
#define Svc_ComLogger_HPP
#include "Svc/ComLogger/ComLoggerComponentAc.hpp"
#include <Os/File.hpp>
#include <Os/Mutex.hpp... | hpp |
fprime | data/projects/fprime/Svc/ComLogger/test/ut/ComLoggerMain.cpp | // ----------------------------------------------------------------------
// Main.cpp
// ----------------------------------------------------------------------
#include <iostream>
#include "ComLoggerTester.hpp"
TEST(Test, testLogging) {
Svc::ComLoggerTester tester("Tester");
tester.testLogging();
}
TEST(Test, ... | cpp |
fprime | data/projects/fprime/Svc/ComLogger/test/ut/ComLoggerTester.hpp | // ----------------------------------------------------------------------
// ComLoggerTester.hpp
// ----------------------------------------------------------------------
#ifndef TESTER_HPP
#define TESTER_HPP
#include "ComLoggerGTestBase.hpp"
#include "../../ComLogger.hpp"
#include <Fw/Comp/ActiveComponentBase.hpp>
#... | hpp |
fprime | data/projects/fprime/Svc/ComLogger/test/ut/ComLoggerTester.cpp | // ----------------------------------------------------------------------
// CommandSequencer/test/ut/Tester.cpp
// ----------------------------------------------------------------------
#include <cstdio>
#include "ComLoggerTester.hpp"
#include "Fw/Cmd/CmdPacket.hpp"
#include <Os/ValidateFile.hpp>
#include <Os/FileSy... | cpp |
fprime | data/projects/fprime/Svc/Health/HealthComponentImpl.cpp | // ======================================================================
// \title Health.hpp
// \author Tim
// \brief hpp file for Health component implementation class
//
// \copyright
// Copyright 2009-2015, by the California Institute of Technology.
// ALL RIGHTS RESERVED. United States Government Sponsorship
/... | cpp |
fprime | data/projects/fprime/Svc/Health/HealthComponentImpl.hpp | // ======================================================================
// \title Health.hpp
// \author Tim, J.Perez
// \brief hpp file for Health component implementation class
//
// \copyright
// Copyright 2009-2015, by the California Institute of Technology.
// ALL RIGHTS RESERVED. United States Government Spon... | hpp |
fprime | data/projects/fprime/Svc/Health/Health.hpp | // ======================================================================
// Health.hpp
// Standardization header for Health
// ======================================================================
#ifndef Svc_Health_HPP
#define Svc_Health_HPP
#include "Svc/Health/HealthComponentImpl.hpp"
namespace Svc {
typedef... | hpp |
fprime | data/projects/fprime/Svc/Health/VxWorks/HealthComponentVxWorksChecks.cpp | // ======================================================================
// \title Health.hpp
// \author Tim
// \brief hpp file for Health component implementation class
//
// \copyright
// Copyright 2009-2015, by the California Institute of Technology.
// ALL RIGHTS RESERVED. United States Government Sponsorship
/... | cpp |
fprime | data/projects/fprime/Svc/Health/Stub/HealthComponentStubChecks.cpp | // ======================================================================
// \title Health.hpp
// \author Tim
// \brief hpp file for Health component implementation class
//
// \copyright
// Copyright 2009-2015, by the California Institute of Technology.
// ALL RIGHTS RESERVED. United States Government Sponsorship
/... | cpp |
fprime | data/projects/fprime/Svc/Health/test/ut/main.cpp | // ----------------------------------------------------------------------
// Main.cpp
// ----------------------------------------------------------------------
#include "HealthTester.hpp"
TEST(Test, NominalTlm) {
Svc::HealthTester tester;
tester.nominalTlm();
}
TEST(Test, WarningTlm) {
Svc::HealthTester tester... | cpp |
fprime | data/projects/fprime/Svc/Health/test/ut/HealthTester.hpp | // ======================================================================
// \title Health/test/ut/Tester.hpp
// \author jdperez
// \brief hpp file for Health test harness implementation class
//
// \copyright
// Copyright 2009-2015, by the California Institute of Technology.
// ALL RIGHTS RESERVED. United States Go... | hpp |
fprime | data/projects/fprime/Svc/Health/test/ut/HealthTester.cpp | // ======================================================================
// \title Health.hpp
// \author jdperez
// \brief cpp file for Health test harness implementation class
//
// \copyright
// Copyright 2009-2015, by the California Institute of Technology.
// ALL RIGHTS RESERVED. United States Government Sponso... | cpp |
fprime | data/projects/fprime/Svc/RateGroupDriver/RateGroupDriver.hpp | /**
* \file
* \author T. Canham
* \brief RateGroupDivider component implementation
*
* This component implements a divider function. A primary tick is invoked
* via the CycleIn port. The divider array then divides down the tick into
* CycleOut ports. The ports are called at the rate of
* input rate/divider[port... | hpp |
fprime | data/projects/fprime/Svc/RateGroupDriver/RateGroupDriver.cpp | #include <Svc/RateGroupDriver/RateGroupDriver.hpp>
#include <FpConfig.hpp>
#include <cstring>
#include <Fw/Types/Assert.hpp>
#include <cstdio>
namespace Svc {
RateGroupDriver::RateGroupDriver(const char* compName) :
RateGroupDriverComponentBase(compName),
m_ticks(0),m_rollover(1),m_configured(false) {... | cpp |
fprime | data/projects/fprime/Svc/RateGroupDriver/test/ut/RateGroupDriverImplTester.hpp | /*
* RateGroupDriverImplTester.hpp
*
* Created on: June 19, 2015
* Author: tcanham
*/
#ifndef RATEGROUPDRIVER_TEST_UT_RATEGROUPDRIVERIMPLTESTER_HPP_
#define RATEGROUPDRIVER_TEST_UT_RATEGROUPDRIVERIMPLTESTER_HPP_
#include <RateGroupDriverGTestBase.hpp>
#include <Svc/RateGroupDriver/RateGroupDriver.hpp>
nam... | hpp |
fprime | data/projects/fprime/Svc/RateGroupDriver/test/ut/RateGroupDriverTester.cpp | /*
* RateGroupDriverTester.cpp
*
* Created on: Mar 18, 2015
* Author: tcanham
*/
#include <Svc/RateGroupDriver/test/ut/RateGroupDriverImplTester.hpp>
#include <Svc/RateGroupDriver/RateGroupDriver.hpp>
#include <Fw/Obj/SimpleObjRegistry.hpp>
#include <gtest/gtest.h>
#if FW_OBJECT_REGISTRATION == 1
static F... | cpp |
fprime | data/projects/fprime/Svc/RateGroupDriver/test/ut/RateGroupDriverImplTester.cpp | /*
* RateGroupDriverImplTester.cpp
*
* Created on: Mar 18, 2015
* Author: tcanham
*/
#include <Svc/RateGroupDriver/test/ut/RateGroupDriverImplTester.hpp>
#include <gtest/gtest.h>
#include <cstdio>
#include <cstring>
#include <Fw/Test/UnitTest.hpp>
namespace Svc {
void RateGroupDriverImplTester::init... | cpp |
fprime | data/projects/fprime/Svc/UdpSender/UdpSenderComponentImpl.hpp | // ======================================================================
// \title UdpSenderImpl.hpp
// \author tcanham
// \brief hpp file for UdpSender component implementation class
//
// \copyright
// Copyright 2009-2015, by the California Institute of Technology.
// ALL RIGHTS RESERVED. United States Government... | hpp |
fprime | data/projects/fprime/Svc/UdpSender/UdpSenderComponentImpl.cpp | // ======================================================================
// \title UdpSenderImpl.cpp
// \author tcanham
// \brief cpp file for UdpSender component implementation class
//
// \copyright
// Copyright 2009-2015, by the California Institute of Technology.
// ALL RIGHTS RESERVED. United States Government... | cpp |
fprime | data/projects/fprime/Svc/UdpSender/test/ut/main.cpp | #include <Svc/UdpSender/test/ut/Tester.hpp>
#include <Fw/Test/UnitTest.hpp>
TEST(Nominal,OpenConnection) {
COMMENT("Open the connections");
Svc::Tester tester;
tester.openTest("127.0.0.1","50000");
}
TEST(Nominal,SendPacket) {
COMMENT("Send a packet");
Svc::Tester tester;
tester.sendTest(... | cpp |
fprime | data/projects/fprime/Svc/UdpSender/test/ut/Tester.cpp | // ======================================================================
// \title UdpSender.hpp
// \author tcanham
// \brief cpp file for UdpSender test harness implementation class
//
// \copyright
// Copyright 2009-2015, by the California Institute of Technology.
// ALL RIGHTS RESERVED. United States Government ... | cpp |
fprime | data/projects/fprime/Svc/UdpSender/test/ut/Tester.hpp | // ======================================================================
// \title UdpSender/test/ut/Tester.hpp
// \author tcanham
// \brief hpp file for UdpSender test harness implementation class
//
// \copyright
// Copyright 2009-2015, by the California Institute of Technology.
// ALL RIGHTS RESERVED. United Sta... | hpp |
fprime | data/projects/fprime/Svc/ActiveRateGroup/ActiveRateGroup.hpp | /*
* \author: Tim Canham
* \file:
* \brief
*
* This file implements the ActiveRateGroup component,
* which invokes a set of components the comprise the rate group.
*
* Copyright 2014-2022, by the California Institute of Technology.
* ALL RIGHTS RESERVED. United States Government Sponsorship
* acknowledged.
*
*/
... | hpp |
fprime | data/projects/fprime/Svc/ActiveRateGroup/ActiveRateGroup.cpp | /*
* \author: Tim Canham
* \file:
* \brief
*
* This file implements the ActiveRateGroup component,
* which invokes a set of components the comprise the rate group.
*
* Copyright 2014-2015, by the California Institute of Technology.
* ALL RIGHTS RESERVED. United States Government Sponsorship
* acknowledged.
*
*/
... | cpp |
fprime | data/projects/fprime/Svc/ActiveRateGroup/test/ut/ActiveRateGroupImplTester.hpp | /*
* \author Tim Canham
* \file
* \brief
*
* This file is the test component header for the active rate group unit test.
*
* Code Generated Source Code Header
*
* Copyright 2014-2015, by the California Institute of Technology.
* ALL RIGHTS RESERVED. United States Government Sponsorship
* acknowledged.
*
*/
#ifnd... | hpp |
fprime | data/projects/fprime/Svc/ActiveRateGroup/test/ut/ActiveRateGroupImplTester.cpp | /*
* \author Tim Canham
* \file
* \brief
*
* This file is the test component for the active rate group unit test.
*
* Code Generated Source Code Header
*
* Copyright 2014-2015, by the California Institute of Technology.
* ALL RIGHTS RESERVED. United States Government Sponsorship
* acknowledged.
*
*/
#include <Sv... | cpp |
fprime | data/projects/fprime/Svc/ActiveRateGroup/test/ut/ActiveRateGroupTester.cpp | /*
* \author Tim Canham
* \file
* \brief
*
* This file is the test driver for the active rate group unit test.
*
* Code Generated Source Code Header
*
* Copyright 2014-2015, by the California Institute of Technology.
* ALL RIGHTS RESERVED. United States Government Sponsorship
* acknowledged.
*
*/
#include <Svc/A... | cpp |
fprime | data/projects/fprime/Svc/CmdSequencer/FPrimeSequence.cpp | // ======================================================================
// \title FPrimeSequence.cpp
// \author Bocchino/Canham
// \brief CmdSequencerComponentImpl::FPrimeSequence implementation
//
// Copyright (C) 2009-2018 California Institute of Technology.
// ALL RIGHTS RESERVED. United States Government Spons... | cpp |
fprime | data/projects/fprime/Svc/CmdSequencer/Events.cpp | // ======================================================================
// \title Events.cpp
// \author Bocchino
// \brief Implementation for CmdSequencerComponentImpl::Sequence::Events
//
// Copyright (C) 2009-2018 California Institute of Technology.
// ALL RIGHTS RESERVED. United States Government Sponsorship
//... | cpp |
fprime | data/projects/fprime/Svc/CmdSequencer/CmdSequencerImpl.hpp | // ======================================================================
// \title CmdSequencerImpl.hpp
// \author Bocchino/Canham
// \brief hpp file for CmdSequencer component implementation class
//
// Copyright (C) 2009-2018 California Institute of Technology.
// ALL RIGHTS RESERVED. United States Government Spo... | hpp |
fprime | data/projects/fprime/Svc/CmdSequencer/CmdSequencer.hpp | // ======================================================================
// CmdSequencer.hpp
// Standardization header for CmdSequencer
// ======================================================================
#ifndef Svc_CmdSequencer_HPP
#define Svc_CmdSequencer_HPP
#include "Svc/CmdSequencer/CmdSequencerImpl.hpp"
... | hpp |
fprime | data/projects/fprime/Svc/CmdSequencer/Sequence.cpp | // ======================================================================
// \title Sequence.cpp
// \author Bocchino/Canham
// \brief Implementation file for CmdSequencer::Sequence
//
// Copyright (C) 2009-2018 California Institute of Technology.
// ALL RIGHTS RESERVED. United States Government Sponsorship
// acknow... | cpp |
fprime | data/projects/fprime/Svc/CmdSequencer/CmdSequencerImpl.cpp | // ======================================================================
// \title CmdSequencerImpl.cpp
// \author Bocchino/Canham
// \brief cpp file for CmdDispatcherComponentBase component implementation class
//
// Copyright (C) 2009-2018 California Institute of Technology.
// ALL RIGHTS RESERVED. United States ... | cpp |
fprime | data/projects/fprime/Svc/CmdSequencer/formats/AMPCSSequence.cpp | // \title AMPCSSequence.cpp
// \author Rob Bocchino
// \brief AMPCSSequence implementation
//
// \copyright
// Copyright (C) 2009-2018 California Institute of Technology.
// ALL RIGHTS RESERVED. United States Government Sponsorship
// acknowledged.
//
// ==============================================================... | cpp |
fprime | data/projects/fprime/Svc/CmdSequencer/formats/AMPCSSequence.hpp | // ======================================================================
// \title AMPCSSequence.hpp
// \author Bocchino
// \brief AMPCSSequence interface
//
// \copyright
// Copyright (C) 2009-2018 California Institute of Technology.
// ALL RIGHTS RESERVED. United States Government Sponsorship
// acknowledged.
//
... | hpp |
fprime | data/projects/fprime/Svc/CmdSequencer/test/ut/MixedRelativeBase.hpp | // ======================================================================
// \title MixedRelativeBase.hpp
// \author Canham/Bocchino
// \brief Base class for Mixed and Relative
//
// \copyright
// Copyright (C) 2009-2018 California Institute of Technology.
// ALL RIGHTS RESERVED. United States Government Sponsorshi... | hpp |
fprime | data/projects/fprime/Svc/CmdSequencer/test/ut/InvalidFiles.hpp | // ======================================================================
// \title InvalidFiles.hpp
// \author Canham/Bocchino
// \brief Test immediate command sequences with EOS record
//
// \copyright
// Copyright (C) 2009-2018 California Institute of Technology.
// ALL RIGHTS RESERVED. United States Government S... | hpp |
fprime | data/projects/fprime/Svc/CmdSequencer/test/ut/Immediate.hpp | // ======================================================================
// \title Immediate.hpp
// \author Canham/Bocchino
// \brief Test immediate command sequences with record
//
// \copyright
// Copyright (C) 2009-2018 California Institute of Technology.
// ALL RIGHTS RESERVED. United States Government Sponsor... | hpp |
fprime | data/projects/fprime/Svc/CmdSequencer/test/ut/ImmediateEOS.hpp | // ======================================================================
// \title ImmediateEOS.hpp
// \author Canham/Bocchino
// \brief Test immediate command sequences with EOS record
//
// \copyright
// Copyright (C) 2009-2018 California Institute of Technology.
// ALL RIGHTS RESERVED. United States Government S... | hpp |
fprime | data/projects/fprime/Svc/CmdSequencer/test/ut/JoinWait.hpp | // ======================================================================
// \title JoinWait.hpp
// \author janamian
// \brief hpp file for CmdSequencer test harness implementation class
//
// \copyright
// Copyright 2009-2021, by the California Institute of Technology.
// ALL RIGHTS RESERVED. United States Governme... | hpp |
fprime | data/projects/fprime/Svc/CmdSequencer/test/ut/InvalidFiles.cpp | // ======================================================================
// \title InvalidFiles.cpp
// \author Canham/Bocchino
// \brief Test immediate command sequences with EOS record
//
// \copyright
// Copyright (C) 2009-2018 California Institute of Technology.
// ALL RIGHTS RESERVED. United States Government S... | cpp |
fprime | data/projects/fprime/Svc/CmdSequencer/test/ut/Relative.hpp | // ======================================================================
// \title Relative.hpp
// \author Canham/Bocchino
// \brief Test relative command sequences
//
// \copyright
// Copyright (C) 2009-2018 California Institute of Technology.
// ALL RIGHTS RESERVED. United States Government Sponsorship
// acknowl... | hpp |
fprime | data/projects/fprime/Svc/CmdSequencer/test/ut/CommandBuffers.cpp | // ======================================================================
// \title CommandBuffers.cpp
// \author Canham/Bocchino
// \brief Command buffers for testing sequences
//
// \copyright
// Copyright (C) 2009-2018 California Institute of Technology.
// ALL RIGHTS RESERVED. United States Government Sponsorsh... | cpp |
fprime | data/projects/fprime/Svc/CmdSequencer/test/ut/AMPCS.cpp | // ======================================================================
// \title AMPCS.cpp
// \author Rob Bocchino
// \brief AMPCS-specific tests
//
// \copyright
// Copyright (C) 2009-2018 California Institute of Technology.
// ALL RIGHTS RESERVED. United States Government Sponsorship
// acknowledged.
// =======... | cpp |
fprime | data/projects/fprime/Svc/CmdSequencer/test/ut/Immediate.cpp | // ======================================================================
// \title Immediate.cpp
// \author Canham/Bocchino
// \brief Test immediate command sequences with record
//
// \copyright
// Copyright (C) 2009-2018 California Institute of Technology.
// ALL RIGHTS RESERVED. United States Government Sponsor... | cpp |
fprime | data/projects/fprime/Svc/CmdSequencer/test/ut/CommandBuffers.hpp | // ======================================================================
// \title CommandBuffers.hpp
// \author Canham/Bocchino
// \brief Command buffers for testing sequences
//
// \copyright
// Copyright (C) 2009-2018 California Institute of Technology.
// ALL RIGHTS RESERVED. United States Government Sponsorsh... | hpp |
fprime | data/projects/fprime/Svc/CmdSequencer/test/ut/AMPCS.hpp | // ======================================================================
// \title AMPCS.hpp
// \author Rob bocchino
// \brief AMPCS-specific tests
//
// \copyright
// Copyright (C) 2009-2018 California Institute of Technology.
// ALL RIGHTS RESERVED. United States Government Sponsorship
// acknowledged.
// =======... | hpp |
fprime | data/projects/fprime/Svc/CmdSequencer/test/ut/Health.cpp | // ======================================================================
// \title Health.cpp
// \author Canham/Bocchino
// \brief Test health pings
//
// \copyright
// Copyright (C) 2009-2018 California Institute of Technology.
// ALL RIGHTS RESERVED. United States Government Sponsorship
// acknowledged.
// ======... | cpp |
fprime | data/projects/fprime/Svc/CmdSequencer/test/ut/NoFiles.cpp | // ======================================================================
// \title NoFiles.cpp
// \author Canham/Bocchino
// \brief Test immediate command sequences with EOS record
//
// \copyright
// Copyright (C) 2009-2018 California Institute of Technology.
// ALL RIGHTS RESERVED. United States Government Sponso... | cpp |
fprime | data/projects/fprime/Svc/CmdSequencer/test/ut/Mixed.cpp | // ======================================================================
// \title Mixed.cpp
// \author Canham/Bocchino
// \brief Test mixed immediate, relative, and absolute commands
//
// \copyright
// Copyright (C) 2009-2018 California Institute of Technology.
// ALL RIGHTS RESERVED. United States Government Spo... | cpp |
fprime | data/projects/fprime/Svc/CmdSequencer/test/ut/NoFiles.hpp | // ======================================================================
// \title NoFiles.hpp
// \author Canham/Bocchino
// \brief Test immediate command sequences with EOS record
//
// \copyright
// Copyright (C) 2009-2018 California Institute of Technology.
// ALL RIGHTS RESERVED. United States Government Sponso... | hpp |
fprime | data/projects/fprime/Svc/CmdSequencer/test/ut/ImmediateBase.hpp | // ======================================================================
// \title ImmediateBase.hpp
// \author Canham/Bocchino
// \brief Base class for Immediate and ImmediateEOS
//
// \copyright
// Copyright (C) 2009-2018 California Institute of Technology.
// ALL RIGHTS RESERVED. United States Government Sponso... | hpp |
fprime | data/projects/fprime/Svc/CmdSequencer/test/ut/Health.hpp | // ======================================================================
// \title Health.hpp
// \author Canham/Bocchino
// \brief Test health pings
//
// \copyright
// Copyright (C) 2009-2018 California Institute of Technology.
// ALL RIGHTS RESERVED. United States Government Sponsorship
// acknowledged.
// ======... | hpp |
fprime | data/projects/fprime/Svc/CmdSequencer/test/ut/Relative.cpp | // ======================================================================
// \title Relative.cpp
// \author Canham/Bocchino
// \brief Test relative command sequences
//
// \copyright
// Copyright (C) 2009-2018 California Institute of Technology.
// ALL RIGHTS RESERVED. United States Government Sponsorship
// acknowl... | cpp |
fprime | data/projects/fprime/Svc/CmdSequencer/test/ut/MixedRelativeBase.cpp | // ======================================================================
// \title MixedRelativeBase.cpp
// \author Canham/Bocchino
// \brief Base class for Mixed and Relative
//
// \copyright
// Copyright (C) 2009-2018 California Institute of Technology.
// ALL RIGHTS RESERVED. United States Government Sponsorshi... | cpp |
fprime | data/projects/fprime/Svc/CmdSequencer/test/ut/CmdSequencerTester.hpp | // ======================================================================
// \title CmdSequencerTester.hpp
// \author Bocchino/Canham
// \brief CmdSequencer test interface
//
// \copyright
// Copyright (C) 2009-2018 California Institute of Technology.
// ALL RIGHTS RESERVED. United States Government Sponsorship
// a... | hpp |
fprime | data/projects/fprime/Svc/CmdSequencer/test/ut/UnitTest.hpp | // ======================================================================
// \title UnitTester.hpp
// \author Rob Bocchino
// \brief Unit test macros
//
// \copyright
// Copyright (C) 2009-2018 California Institute of Technology.
// ALL RIGHTS RESERVED. United States Government Sponsorship
// acknowledged.
#ifndef... | hpp |
fprime | data/projects/fprime/Svc/CmdSequencer/test/ut/CmdSequencerMain.cpp | // \copyright
// Copyright (C) 2009-2018 California Institute of Technology.
// ALL RIGHTS RESERVED. United States Government Sponsorship
// acknowledged.
// ----------------------------------------------------------------------
// Main.cpp
// ----------------------------------------------------------------------
#... | cpp |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.