Add list-tests protocol message, test subcommands, extract test handlers
This commit is contained in:
@@ -74,6 +74,19 @@ struct ResponseLog {
|
||||
auto as_tuple() { return std::tie(entries); }
|
||||
};
|
||||
|
||||
struct RequestListTests {
|
||||
static constexpr int8_t ext_id = 125;
|
||||
auto as_tuple() const { return std::tie(); }
|
||||
auto as_tuple() { return std::tie(); }
|
||||
};
|
||||
|
||||
struct ResponseListTests {
|
||||
static constexpr int8_t ext_id = 124;
|
||||
std::vector<std::string> names;
|
||||
auto as_tuple() const { return std::tie(names); }
|
||||
auto as_tuple() { return std::tie(names); }
|
||||
};
|
||||
|
||||
struct RequestTest {
|
||||
static constexpr int8_t ext_id = 127;
|
||||
std::string name;
|
||||
|
||||
Reference in New Issue
Block a user