Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions FppTest/component/active/ActiveTest.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,13 @@ class ActiveTest :
//! Destroy ActiveTest object
~ActiveTest();

PRIVATE:
private:

#define HAS_ASYNC
#include "FppTest/component/common/typed_async.hpp"
#include "FppTest/component/common/typed.hpp"

PRIVATE:
private:

// ----------------------------------------------------------------------
// Handler implementations for user-defined serial input ports
Expand Down Expand Up @@ -77,7 +77,7 @@ class ActiveTest :
Fw::SerializeBufferBase& buffer //!< The serialization buffer
) override;

PRIVATE:
private:

// ----------------------------------------------------------------------
// Handler implementations for commands
Expand Down Expand Up @@ -177,7 +177,7 @@ class ActiveTest :
FormalParamStruct str //!< A struct
) override;

PRIVATE:
private:

// ----------------------------------------------------------------------
// Handler implementations for user-defined internal interfaces
Expand Down Expand Up @@ -217,7 +217,7 @@ class ActiveTest :
const FormalParamStruct& str //!< A struct
) override;

PRIVATE:
private:

// ----------------------------------------------------------------------
// Overflow hook implementations for user-defined async ports interfaces
Expand Down
6 changes: 3 additions & 3 deletions FppTest/component/active/test/ut/Tester.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -73,11 +73,11 @@ class Tester : public ActiveTestGTestBase {

void testOverflowHook();

PRIVATE:
private:

#include "FppTest/component/common/tester.hpp"

PRIVATE:
private:
// ----------------------------------------------------------------------
// Handlers for serial from ports
// ----------------------------------------------------------------------
Expand Down Expand Up @@ -125,7 +125,7 @@ class Tester : public ActiveTestGTestBase {
//! Check unsuccessful status of a serial port invocation
void checkSerializeStatusBufferEmpty();

PRIVATE:
private:
// ----------------------------------------------------------------------
// Variables
// ----------------------------------------------------------------------
Expand Down
4 changes: 2 additions & 2 deletions FppTest/component/empty/test/ut/Tester.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ class Tester : public EmptyGTestBase {

void test();

PRIVATE:
private:
// ----------------------------------------------------------------------
// Helper methods
// ----------------------------------------------------------------------
Expand All @@ -49,7 +49,7 @@ class Tester : public EmptyGTestBase {
//!
void initComponents();

PRIVATE:
private:
// ----------------------------------------------------------------------
// Variables
// ----------------------------------------------------------------------
Expand Down
6 changes: 3 additions & 3 deletions FppTest/component/passive/PassiveTest.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,11 @@ class PassiveTest :
//! Destroy PassiveTest object
~PassiveTest();

PRIVATE:
private:

#include "FppTest/component/common/typed.hpp"

PRIVATE:
private:

// ----------------------------------------------------------------------
// Handler implementations for user-defined serial input ports
Expand All @@ -51,7 +51,7 @@ class PassiveTest :
Fw::SerializeBufferBase& buffer //!< The serialization buffer
) override;

PRIVATE:
private:

// ----------------------------------------------------------------------
// Handler implementations for commands
Expand Down
6 changes: 3 additions & 3 deletions FppTest/component/passive/test/ut/Tester.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -61,11 +61,11 @@ class Tester : public PassiveTestGTestBase {

void testTime();

PRIVATE:
private:

#include "FppTest/component/common/tester.hpp"

PRIVATE:
private:
// ----------------------------------------------------------------------
// Handlers for serial from ports
// ----------------------------------------------------------------------
Expand Down Expand Up @@ -107,7 +107,7 @@ class Tester : public PassiveTestGTestBase {
//! Check unsuccessful status of a serial port invocation
void checkSerializeStatusBufferEmpty();

PRIVATE:
private:
// ----------------------------------------------------------------------
// Variables
// ----------------------------------------------------------------------
Expand Down
10 changes: 5 additions & 5 deletions FppTest/component/queued/QueuedTest.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ class QueuedTest :
//! Destroy QueuedTest object
~QueuedTest();

PRIVATE:
private:

// ----------------------------------------------------------------------
// Handler implementations for user-defined typed input ports
Expand All @@ -39,7 +39,7 @@ class QueuedTest :
#include "FppTest/component/common/typed_async.hpp"
#include "FppTest/component/common/typed.hpp"

PRIVATE:
private:

// ----------------------------------------------------------------------
// Handler implementations for user-defined serial input ports
Expand Down Expand Up @@ -81,7 +81,7 @@ class QueuedTest :
Fw::SerializeBufferBase& buffer //!< The serialization buffer
) override;

PRIVATE:
private:

// ----------------------------------------------------------------------
// Handler implementations for commands
Expand Down Expand Up @@ -181,7 +181,7 @@ class QueuedTest :
FormalParamStruct str //!< A struct
) override;

PRIVATE:
private:

// ----------------------------------------------------------------------
// Handler implementations for user-defined internal interfaces
Expand Down Expand Up @@ -221,7 +221,7 @@ class QueuedTest :
const FormalParamStruct& str //!< A struct
) override;

PRIVATE:
private:

// ----------------------------------------------------------------------
// Overflow hook implementations for user-defined async ports interfaces
Expand Down
6 changes: 3 additions & 3 deletions FppTest/component/queued/test/ut/Tester.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -72,11 +72,11 @@ class Tester : public QueuedTestGTestBase {

void testOverflowHook();

PRIVATE:
private:

#include "FppTest/component/common/tester.hpp"

PRIVATE:
private:
// ----------------------------------------------------------------------
// Handlers for serial from ports
// ----------------------------------------------------------------------
Expand Down Expand Up @@ -124,7 +124,7 @@ class Tester : public QueuedTestGTestBase {
//! Check unsuccessful status of a serial port invocation
void checkSerializeStatusBufferEmpty();

PRIVATE:
private:
// ----------------------------------------------------------------------
// Variables
// ----------------------------------------------------------------------
Expand Down
Loading