blob: 7f4187db37c012550132e09f3641507800ee004a [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
Austin Schuh60e77942022-05-16 17:48:24 -070010// Returns the path to the provided artifact which works
Austin Schuh373f1762021-06-02 21:07:09 -070011std::string ArtifactPath(std::string_view path);
12
13} // namespace testing
14} // namespace aos
15
16#endif // AOS_TESTING_PATH_H_