mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 02:30:44 +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>
|
||||
*
|
||||
@ -13,6 +13,11 @@
|
||||
|
||||
#include "machine_common.h"
|
||||
|
||||
#ifdef UNITTEST_MODE
|
||||
#define private public
|
||||
#define protected public
|
||||
#endif
|
||||
|
||||
//! \brief EventLists can either be Waveform or Event types
|
||||
enum EventListType { EVL_Waveform, EVL_Event };
|
||||
|
||||
|
@ -15,6 +15,10 @@
|
||||
#include "SleepLib/machine_loader.h"
|
||||
#include "SleepLib/profiles.h"
|
||||
|
||||
#ifdef UNITTEST_MODE
|
||||
#define private public
|
||||
#define protected public
|
||||
#endif
|
||||
|
||||
//********************************************************************************************
|
||||
/// IMPORTANT!!!
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* SleepLib MachineLoader Base Class Header
|
||||
/* SleepLib MachineLoader Base Class Header
|
||||
*
|
||||
* Copyright (c) 2018 Mark Watkins <mark@jedimark.net>
|
||||
*
|
||||
@ -22,6 +22,10 @@
|
||||
#include "zlib.h"
|
||||
#endif
|
||||
|
||||
#ifdef UNITTEST_MODE
|
||||
#define private public
|
||||
#define protected public
|
||||
#endif
|
||||
|
||||
class MachineLoader;
|
||||
enum DeviceStatus { NEUTRAL, IMPORTING, LIVE, DETECTING };
|
||||
|
Loading…
Reference in New Issue
Block a user