2021-10-27 08:53:58 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
#include <string_view>
|
|
|
|
|
2022-07-01 08:30:38 +00:00
|
|
|
#include <co_generator_t.h>
|
2021-12-08 19:54:53 +00:00
|
|
|
|
2021-10-27 08:53:58 +00:00
|
|
|
#include "opcode_test_suite_t.h"
|
|
|
|
|
|
|
|
class processor_test_suite_t final {
|
|
|
|
private:
|
|
|
|
std::string m_location;
|
|
|
|
|
|
|
|
public:
|
|
|
|
processor_test_suite_t(std::string location) noexcept;
|
|
|
|
|
2022-01-06 09:50:58 +00:00
|
|
|
[[nodiscard]] constexpr std::string_view location() const noexcept { return m_location; }
|
2021-10-27 08:53:58 +00:00
|
|
|
|
2022-01-06 09:50:58 +00:00
|
|
|
[[nodiscard]] EightBit::co_generator_t<opcode_test_suite_t> generator() const;
|
2021-10-27 08:53:58 +00:00
|
|
|
};
|