On this page
Igloo Testing Framework
Overview
Qualified supports the Igloo testing framework. However, we recommend usng the cpp/gtest framework instead of Igloo because Igloo is no longer maintained by its author.
Basic Example
int add(int a, int b); // the candidate's solution
Describe(add_tests) {
It(should_work_on_a_basic_example) {
Assert::That(add(1, 2), Equals(3));
}
};