2014-03-20 18:15:38 -07:00
|
|
|
#ifndef HELPERS_READ_TEST_ENTRIES_H_
|
|
|
|
|
#define HELPERS_READ_TEST_ENTRIES_H_
|
|
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
|
|
struct TestEntry {
|
2014-08-06 13:00:35 -07:00
|
|
|
std::string description;
|
2014-03-20 18:15:38 -07:00
|
|
|
std::string input;
|
|
|
|
|
std::string tree_string;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
std::vector<TestEntry> test_entries_for_language(std::string language);
|
|
|
|
|
|
|
|
|
|
#endif
|