aboutsummaryrefslogtreecommitdiff
path: root/c/test.h
blob: 5565b36cdb736857cccfeb5cc990d7e422165d25 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef TEST_H
#define TEST_H

struct Test
{
	const char* name = {0};
	char error[64] = {0};
	Test(const char* name);
};

int RunTests();

#endif