#include <chrono>
#include <deque>
#include <functional>
#include <map>
#include <memory>
#include <string>
#include <unordered_map>
#include <vector>
#include "absl/status/status.h"
#include "absl/status/statusor.h"
#include "absl/synchronization/mutex.h"
#include "absl/strings/string_view.h"
#include "absl/time/time.h"
#include "app/rom.h"
#include "imgui.h"
#include "util/log.h"
Go to the source code of this file.
Classes | |
struct | yaze::test::TestResult |
struct | yaze::test::TestResults |
class | yaze::test::TestSuite |
struct | yaze::test::ResourceStats |
class | yaze::test::TestManager |
Namespaces | |
namespace | yaze |
Main namespace for the application. | |
namespace | yaze::editor |
Editors are the view controllers for the application. | |
namespace | yaze::test |
Macros | |
#define | IMGUI_DEFINE_MATH_OPERATORS |
Enumerations | |
enum class | yaze::test::TestStatus { yaze::test::kNotRun , yaze::test::kRunning , yaze::test::kPassed , yaze::test::kFailed , yaze::test::kSkipped } |
enum class | yaze::test::TestCategory { yaze::test::kUnit , yaze::test::kIntegration , yaze::test::kUI , yaze::test::kPerformance , yaze::test::kMemory } |
Functions | |
const char * | yaze::test::TestStatusToString (TestStatus status) |
const char * | yaze::test::TestCategoryToString (TestCategory category) |
ImVec4 | yaze::test::GetTestStatusColor (TestStatus status) |
#define IMGUI_DEFINE_MATH_OPERATORS |
Definition at line 20 of file test_manager.h.