Austin Schuh | 373f176 | 2021-06-02 21:07:09 -0700 | [diff] [blame] | 1 | #ifndef AOS_TESTING_PATH_H_ |
2 | #define AOS_TESTING_PATH_H_ | ||||
3 | |||||
4 | #include <string> | ||||
5 | #include <string_view> | ||||
6 | |||||
7 | namespace aos { | ||||
8 | namespace testing { | ||||
9 | |||||
Austin Schuh | 60e7794 | 2022-05-16 17:48:24 -0700 | [diff] [blame^] | 10 | // Returns the path to the provided artifact which works |
Austin Schuh | 373f176 | 2021-06-02 21:07:09 -0700 | [diff] [blame] | 11 | std::string ArtifactPath(std::string_view path); |
12 | |||||
13 | } // namespace testing | ||||
14 | } // namespace aos | ||||
15 | |||||
16 | #endif // AOS_TESTING_PATH_H_ |