mirror of
https://github.com/open-goal/jak-project
synced 2026-09-12 20:56:09 -04:00
25 lines
358 B
C++
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
|