1 #ifndef FORTRAN_TEST_RUNTIME_TESTING_H_
2 #define FORTRAN_TEST_RUNTIME_TESTING_H_
3 
4 #include "llvm/Support/raw_ostream.h"
5 #include <cstddef>
6 
7 namespace llvm {
8 class raw_ostream;
9 }
10 
11 void StartTests();
12 llvm::raw_ostream &Fail();
13 int EndTests();
14 
15 #endif // FORTRAN_TEST_RUNTIME_TESTING_H_
16