xtd - Reference Guide  0.1.1
Modern c++17/20 framework to create console, GUI and unit test applications on Windows, macOS, Linux, iOS and android.
test_state.h
Go to the documentation of this file.
1 #pragma once
5 #include "test.h"
6 
8 namespace xtd {
10  namespace tunit {
17  enum class test_state {
19  considered,
21  ignored
22  };
23  }
24 }
test_state
Represent the test state enumeration used bu test.
Definition: test_state.h:17
@ considered
Test is considered.
@ ignored
Test is ignored.
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition: system_report.h:17
Contains xtd::tunit::test class.