scsl 0.1.1
Shimmering Clarity Standard Library
Test.h
Go to the documentation of this file.
1
7#ifndef SCSL_TEST_H
8#define SCSL_TEST_H
9
10#include <string>
11
12
13namespace scsl {
14
15
24void TestAssert(bool condition);
25
26
38void TestAssert(bool condition, std::string message);
39
40
41} // namespace scsl
42
43#endif //SCSL_TEST_H
scsl is the top-level namespace containing all the code in this library.
Definition: scsl.h:37
void TestAssert(bool condition)
Definition: Test.cc:32