/** ** \file testsuite/tests-collector.cc ** \brief Implementation of testsuite::TestsCollector. */ #include namespace testsuite { void TestsCollector::operator()(const ast::FunctionDec& e) { if (is_a_test_function(e)) { tests_.push_back(&e); } } } // namespace testsuite