15 lines
290 B
C++
15 lines
290 B
C++
#ifndef HELPERS_READ_TEST_ENTRIES_H_
|
|
#define HELPERS_READ_TEST_ENTRIES_H_
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
struct TestEntry {
|
|
std::string description;
|
|
std::string input;
|
|
std::string tree_string;
|
|
};
|
|
|
|
std::vector<TestEntry> test_entries_for_language(std::string language);
|
|
|
|
#endif
|