/** ** \file testsuite/testsuite-generator.hh ** \brief Declaration of testsuite::TestsuiteGenerator. */ #pragma once #include namespace testsuite { /** * Generate a new AST providing a _main function. This main function * calls each provided function within the context of a testsuite runtime. * * @param tests a vector referencing every test to run within the testsuite * @return a new AST which can be appened to the main program */ ast::ChunkInterface* generate_testsuite_runtime(const std::vector& tests); } // namespace testsuite