diff --git a/docs/book/_sources/doc_params.md b/docs/book/_sources/doc_params.md index 72c9d845..b5ce07c2 100644 --- a/docs/book/_sources/doc_params.md +++ b/docs/book/_sources/doc_params.md @@ -327,6 +327,10 @@ struct RunnerCallbacks // `RegisterTests`: A function that is called once ImGuiTestEngine is ready // to be filled with tests and automations definitions. VoidFunction RegisterTests = EmptyVoidFunction(); + // `registerTestsCalled`: will be set to true when RegisterTests was called + // (you can set this to false if you want to RegisterTests to be called again + // during the app execution) + bool registerTestsCalled = false; // --------------- Exit sequence callbacks ------------------- diff --git a/docs/book/doc_params.html b/docs/book/doc_params.html index 6a14223e..088368fb 100644 --- a/docs/book/doc_params.html +++ b/docs/book/doc_params.html @@ -759,6 +759,10 @@