blob: 0ae418feb9b32ce51f577e4179e935230bca80b2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "../tests/all.h"
int main() {
monero_test_creation();
monero_test_restore();
printf("All tests passed\n");
return 0;
}
|