mirror of
https://github.com/nasa/fprime.git
synced 2025-12-10 17:47:10 -06:00
* lestarch: adding logical types implementation into Linux/StandardTypes.hpp * lestarch: removing VxWorks StandardTypes from repository * updated fprime types for correct compilation with vxworks and baremetal * lestarch: refactoring types and configuration header w.r.t type design * lestarch: replacing usages of AssertArg with FwAssertArgType * lestarch: missspelled configuration * lestarch: minor compilation fixes * lestarch: renaming StandardTypes.hpp -> PlatformTypes.hpp * lestarch: updating PRI tokens * lestarch: replacing BasicTypes.hpp includes with FpConfig.hpp * lestarch: UT and compilation fixes for types refactor * lestarch: sp * lestarch: fixing RPI issues in PassiveConsoleTextLogger * lestarch: converting RPI build to debug * lestarch: removing duplicate config imports * lestarch: fixing documentation * lestarch: fixing up multiple definitions and RPI compilation problems * lestarch: reverting debug build * lestarch: reverting platform types to class-based constants * lestarch: reworking basic types * lestarch: configured types refactor into classes * lestarch: fixing bugs with static constants in classes * lestarch: fixing platform types spelling and documentation * lestarch: adding include guards to types headers Co-authored-by: Kevin F Ortega <kevin.f.ortega@jpl.nasa.gov>
82 lines
2.2 KiB
C++
82 lines
2.2 KiB
C++
/*
|
|
* UnitTestAssert.hpp
|
|
*
|
|
* Created on: Feb 8, 2016
|
|
* Author: tcanham
|
|
* Revised July 2020
|
|
* Author: bocchino
|
|
*/
|
|
|
|
#ifndef TEST_UNITTESTASSERT_HPP_
|
|
#define TEST_UNITTESTASSERT_HPP_
|
|
|
|
#include <Fw/Test/String.hpp>
|
|
#include <Fw/Types/Assert.hpp>
|
|
|
|
namespace Test {
|
|
|
|
class UnitTestAssert: public Fw::AssertHook {
|
|
public:
|
|
#if FW_ASSERT_LEVEL == FW_FILEID_ASSERT
|
|
typedef NATIVE_UINT_TYPE File;
|
|
#else
|
|
typedef String File;
|
|
#endif
|
|
// initial value for File
|
|
static const File fileInit;
|
|
|
|
public:
|
|
UnitTestAssert();
|
|
virtual ~UnitTestAssert();
|
|
// function for hook
|
|
void doAssert();
|
|
void reportAssert(
|
|
FILE_NAME_ARG file,
|
|
NATIVE_UINT_TYPE lineNo,
|
|
NATIVE_UINT_TYPE numArgs,
|
|
FwAssertArgType arg1,
|
|
FwAssertArgType arg2,
|
|
FwAssertArgType arg3,
|
|
FwAssertArgType arg4,
|
|
FwAssertArgType arg5,
|
|
FwAssertArgType arg6
|
|
);
|
|
// retrieves assertion failure values
|
|
void retrieveAssert(
|
|
File& file,
|
|
NATIVE_UINT_TYPE& lineNo,
|
|
NATIVE_UINT_TYPE& numArgs,
|
|
FwAssertArgType& arg1,
|
|
FwAssertArgType& arg2,
|
|
FwAssertArgType& arg3,
|
|
FwAssertArgType& arg4,
|
|
FwAssertArgType& arg5,
|
|
FwAssertArgType& arg6
|
|
) const;
|
|
|
|
// check whether assertion failure occurred
|
|
bool assertFailed() const;
|
|
|
|
// clear assertion failure
|
|
void clearAssertFailure();
|
|
|
|
private:
|
|
File m_file;
|
|
NATIVE_UINT_TYPE m_lineNo;
|
|
NATIVE_INT_TYPE m_numArgs;
|
|
FwAssertArgType m_arg1;
|
|
FwAssertArgType m_arg2;
|
|
FwAssertArgType m_arg3;
|
|
FwAssertArgType m_arg4;
|
|
FwAssertArgType m_arg5;
|
|
FwAssertArgType m_arg6;
|
|
|
|
// Whether an assertion failed
|
|
bool m_assertFailed;
|
|
|
|
};
|
|
|
|
} /* namespace Test */
|
|
|
|
#endif /* TEST_UNITTESTASSERT_HPP_ */
|