blob: 1abad741c84299862ec21f69cb558d6242d54d86 [file] [log] [blame]
Austin Schuh373f1762021-06-02 21:07:09 -07001#ifndef AOS_TESTING_PATH_H_
2#define AOS_TESTING_PATH_H_
3
4#include <string>
5#include <string_view>
6
7namespace aos {
8namespace testing {
9
10// Returns the path to the provided artifact which works
11std::string ArtifactPath(std::string_view path);
12
13} // namespace testing
14} // namespace aos
15
16#endif // AOS_TESTING_PATH_H_