File: ut_run_tests.cpp

package info (click to toggle)
openalgz-ut 1.1.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 192 kB
  • sloc: cpp: 425; sh: 10; makefile: 6
file content (21 lines) | stat: -rw-r--r-- 496 bytes parent folder | download
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() {}