#pragma once #include namespace testsuite { inline std::vector& TestsCollector::tests_get() { return tests_; } inline bool TestsCollector::is_a_test_function(const ast::FunctionDec& node) { return node.name_get().get().starts_with("test_") && node.formals_get().empty(); } } // namespace testsuite