blob: 17e7e7c31b5fb04adc5fb60cdc20fbc4ca73c8c4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#include "spm.h"
#include "framework.h"
const char *testFmt = "returned '%s', expected '%s'\n";
struct TestCase testCase[] = {
{},
};
size_t numCases = sizeof(testCase) / sizeof(struct TestCase);
int main(int argc, char *argv[]) {
for (size_t i = 0; i < numCases; i++) {
// myassert()
}
return 0;
}
|