MFMv2.0.10
Movable Feast Machine Simulator 2.0.10
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
Fail_Test.h
1 #ifndef FAIL_TEST_H /* -*- C++ -*- */
2 #define FAIL_TEST_H
3 
4 #include "Fail.h"
5 
6 namespace MFM {
7 
8  class Fail_Test
9  {
10  private:
11 
12  public:
13  static void Test_NoFail();
14  static void Test_SimpleFail();
15  static void Test_FailAndNot();
16  static void Test_FailWithCode();
17  static void Test_NestedFail();
18  static void Test_UnsafeModification();
19 
20  static void Test_RunTests();
21  };
22 } /* namespace MFM */
23 #endif /*FAIL_TEST_H*/
Definition: Fail_Test.h:8