mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
Make Event and Loader/PRS1Loader protected and private members public during unit testing.
This commit is contained in:
parent
af375af090
commit
d4b65d8e73
@ -1,4 +1,4 @@
|
|||||||
/* SleepLib Event Class Header
|
/* SleepLib Event Class Header
|
||||||
*
|
*
|
||||||
* Copyright (C) 2011-2018 Mark Watkins <mark@jedimark.net>
|
* Copyright (C) 2011-2018 Mark Watkins <mark@jedimark.net>
|
||||||
*
|
*
|
||||||
@ -13,6 +13,11 @@
|
|||||||
|
|
||||||
#include "machine_common.h"
|
#include "machine_common.h"
|
||||||
|
|
||||||
|
#ifdef UNITTEST_MODE
|
||||||
|
#define private public
|
||||||
|
#define protected public
|
||||||
|
#endif
|
||||||
|
|
||||||
//! \brief EventLists can either be Waveform or Event types
|
//! \brief EventLists can either be Waveform or Event types
|
||||||
enum EventListType { EVL_Waveform, EVL_Event };
|
enum EventListType { EVL_Waveform, EVL_Event };
|
||||||
|
|
||||||
|
@ -15,6 +15,10 @@
|
|||||||
#include "SleepLib/machine_loader.h"
|
#include "SleepLib/machine_loader.h"
|
||||||
#include "SleepLib/profiles.h"
|
#include "SleepLib/profiles.h"
|
||||||
|
|
||||||
|
#ifdef UNITTEST_MODE
|
||||||
|
#define private public
|
||||||
|
#define protected public
|
||||||
|
#endif
|
||||||
|
|
||||||
//********************************************************************************************
|
//********************************************************************************************
|
||||||
/// IMPORTANT!!!
|
/// IMPORTANT!!!
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* SleepLib MachineLoader Base Class Header
|
/* SleepLib MachineLoader Base Class Header
|
||||||
*
|
*
|
||||||
* Copyright (c) 2018 Mark Watkins <mark@jedimark.net>
|
* Copyright (c) 2018 Mark Watkins <mark@jedimark.net>
|
||||||
*
|
*
|
||||||
@ -22,6 +22,10 @@
|
|||||||
#include "zlib.h"
|
#include "zlib.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifdef UNITTEST_MODE
|
||||||
|
#define private public
|
||||||
|
#define protected public
|
||||||
|
#endif
|
||||||
|
|
||||||
class MachineLoader;
|
class MachineLoader;
|
||||||
enum DeviceStatus { NEUTRAL, IMPORTING, LIVE, DETECTING };
|
enum DeviceStatus { NEUTRAL, IMPORTING, LIVE, DETECTING };
|
||||||
|
Loading…
Reference in New Issue
Block a user