// Step 187: In-editor help panel checks. #include #include #include static std::string readFile(const std::string& path) { std::ifstream f(path); if (!f.is_open()) return {}; return std::string((std::istreambuf_iterator(f)), std::istreambuf_iterator()); } static void assertContains(const std::string& text, const std::string& needle) { assert(text.find(needle) != std::string::npos); } int main() { const std::string help = readFile("src/panels/HelpPanelWindow.h"); assertContains(help, "Documentation"); assertContains(help, "renderHelpPanel"); printf("step187_test: all assertions passed\n"); return 0; }