martinmoene / lest

A modern, C++11-native, single-file header-only, tiny framework for unit-tests, TDD and BDD (includes C++98 variant)
Boost Software License 1.0
390 stars 45 forks source link

Enable hiding of test cases via tags that start with '[.', such as [.integration]. #13

Closed martinmoene closed 9 years ago

martinmoene commented 9 years ago

Non-unit tests can be part of a test program, but we may want to run these tests only occasionally, e.g. because they take relatively long.

In his NDC 2015 talk @philsquared mentioned [.integration] as an example of a tag that hides a test case in CATCH.

Currently lest only supports [.] and [hide].