1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
// Tests for UT_RUN environment variable filtering feature
// This file is used by CTest to verify the UT_RUN functionality
#include "ut/ut.hpp"
using namespace ut;
// Define exactly 5 tests with known names for predictable testing
suite filter_tests = [] {
"alpha"_test = [] { expect(true); };
"beta"_test = [] { expect(true); };
"gamma"_test = [] { expect(true); };
test("delta test") = [] { expect(true); };
test("epsilon test") = [] { expect(true); };
};
int main() {}
|