Files
jak-project/old_compiler/cpp/goos/GoosTest.h
T
2020-08-27 11:58:19 -04:00

25 lines
358 B
C++

#ifndef COMPILER_GOOSTEST_H
#define COMPILER_GOOSTEST_H
#include <string>
#include "goos/Goos.h"
class GoosTest {
public:
GoosTest(const std::string& filename);
Goos goos;
bool run();
std::string name;
std::string description;
Object expected, actual;
private:
std::string file;
};
bool run_all_tests();
#endif // COMPILER_GOOSTEST_H