#ifndef MOJO_PUBLIC_CPP_TEST_SUPPORT_TEST_SUPPORT_H_
#define MOJO_PUBLIC_CPP_TEST_SUPPORT_TEST_SUPPORT_H_
#include <string>
#include <vector>
#include "mojo/public/c/test_support/test_support.h"
namespace mojo {
namespace test {
inline void LogPerfResult(const char* test_name,
const char* sub_test_name,
double value,
const char* units) { … }
inline FILE* OpenSourceRootRelativeFile(const std::string& relative_path) { … }
std::vector<std::string> EnumerateSourceRootRelativeDirectory(
const std::string& relative_path);
}
}
#endif