Ejemplo n.º 1
0
    void run(Reporter& reporter)
    {
        reporter.run();

        for (auto it = suites_.begin(); it != suites_.end(); ++it)
        {
            reporter.runTestSuite(it->second->number(), it->second->name());
            it->second->runTests(reporter);
            reporter.finishTestSuite();
        }

        reporter.finish();
    }