ut icon indicating copy to clipboard operation
ut copied to clipboard

[Syntax Auggestion] Syntax for registering suite is different for test

Open cooldome opened this issue 2 years ago • 0 comments

Test defined this way:

"test_name"_test = [] {};
or
test("test_name") = [] {};

However suite is:

suite<"suite_name"> = [] {};

While it should be

"suite_name"_suite = [] {};
or
suite("suite_name") [] {};

cooldome avatar Mar 06 '23 13:03 cooldome