GM6000 Digital Heater Controller Branch: main
SDX-1330
Shutdown_TS.h
Go to the documentation of this file.
1#ifndef Cpl_System_x_testsupport_Shutdown_TS_h_
2#define Cpl_System_x_testsupport_Shutdown_TS_h_
3/*-----------------------------------------------------------------------------
4* This file is part of the Colony.Core Project. The Colony.Core Project is an
5* open source project with a BSD type of licensing agreement. See the license
6* agreement (license.txt) in the top/ directory or on the Internet at
7* http://integerfox.com/colony.core/license.txt
8*
9* Copyright (c) 2014-2022 John T. Taylor
10*
11* Redistributions of the source code must retain the above copyright notice.
12*----------------------------------------------------------------------------*/
13/** @file */
14
15#include <stddef.h>
16
17
18///
19namespace Cpl {
20///
21namespace System {
22
23
24/** This class provides methods to access the unit testing support
25 for the Cpl::System::Shutdown interface.
26
27 This class provides an implementation of Shutdown interface that
28 has the ability to count the number times the Shutdown interface
29 is/was called instead of exiting. It can also alter the application's
30 exit code.
31
32 Notes:
33 o The Shutdown implementation assumes/uses the C Library 'exit()'
34 method.
35 */
37{
38public:
39 /** This method zero's the exit counter and sets the shutdown behavior
40 to NOT exit when called - only count the calls. Note: This
41 interface starts in the 'counter mode' with the count set to
42 zero.
43 */
44 static void clearAndUseCounter( void );
45
46 /** This method returns the current call count AND clears the
47 call counter.
48 */
49 static size_t getAndClearCounter( void );
50
51
52public:
53 /** This method allows the application to exit - but always with
54 the specified 'new_exit_code' (i.e. ignoring the application
55 supplied exit code). This method is helpful during unit testing
56 for 'passing' and exit/failure use case.
57 */
58 static void setExitCode( int new_exit_code );
59
60 /** This method restores the exit/shutdown behavior to its 'non-test'
61 paradigm.
62 */
63 static void restore( void );
64
65};
66
67
68}; // end namespaces
69};
70#endif // end header latch
71
This class provides methods to access the unit testing support for the Cpl::System::Shutdown interfac...
Definition Shutdown_TS.h:37
static void restore(void)
This method restores the exit/shutdown behavior to its 'non-test' paradigm.
static void clearAndUseCounter(void)
This method zero's the exit counter and sets the shutdown behavior to NOT exit when called - only cou...
static size_t getAndClearCounter(void)
This method returns the current call count AND clears the call counter.
static void setExitCode(int new_exit_code)
This method allows the application to exit - but always with the specified 'new_exit_code' (i....
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20