16 lines
352 B
C++
16 lines
352 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> read_real_language_corpus(std::string name);
|
|
std::vector<TestEntry> read_test_language_corpus(std::string name);
|
|
|
|
#endif
|