yaze 0.3.2
Link to the Past ROM Editor
 
Loading...
Searching...
No Matches
z3ed_test_suite.cc
Go to the documentation of this file.
2
3#include "absl/strings/str_format.h"
4#include "util/log.h"
5
6namespace yaze {
7namespace test {
8
10#ifdef YAZE_WITH_GRPC
11 LOG_INFO("Z3edTests", "Registering z3ed AI Agent test suites");
12
13 // Register AI Agent test suite
15 std::make_unique<Z3edAIAgentTestSuite>());
16
17 // Register GUI Automation test suite
19 std::make_unique<GUIAutomationTestSuite>());
20
21 LOG_INFO("Z3edTests", "z3ed test suites registered successfully");
22#else
23 LOG_INFO("Z3edTests", "z3ed test suites not available (YAZE_WITH_GRPC=OFF)");
24#endif // YAZE_WITH_GRPC
25}
26
27} // namespace test
28} // namespace yaze
void RegisterTestSuite(std::unique_ptr< TestSuite > suite)
static TestManager & Get()
#define LOG_INFO(category, format,...)
Definition log.h:106
void RegisterZ3edTestSuites()
Main namespace for the application.