scsl  0.2.4
Shimmering Clarity Standard Library
Test.h
Go to the documentation of this file.
1 
23 #ifndef SCSL_TEST_H
24 #define SCSL_TEST_H
25 
26 
27 #include <string>
28 
29 
30 namespace scsl {
31 
32 
41 void TestAssert(bool condition);
42 
43 
55 void TestAssert(bool condition, std::string message);
56 
57 
58 } // namespace scsl
59 
60 #endif //SCSL_TEST_H
scsl is the top-level namespace containing all the code in this library.
Definition: scsl.h:43
void TestAssert(bool condition)
Definition: Test.cc:49