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 | |
Stephan Pleines | d99b1ee | 2024-02-02 20:56:44 -0800 | [diff] [blame] | 7 | namespace aos::testing { |
Austin Schuh | 373f176 | 2021-06-02 21:07:09 -0700 | [diff] [blame] | 8 | |
Austin Schuh | 60e7794 | 2022-05-16 17:48:24 -0700 | [diff] [blame] | 9 | // Returns the path to the provided artifact which works |
Austin Schuh | 373f176 | 2021-06-02 21:07:09 -0700 | [diff] [blame] | 10 | std::string ArtifactPath(std::string_view path); |
| 11 | |
Stephan Pleines | d99b1ee | 2024-02-02 20:56:44 -0800 | [diff] [blame] | 12 | } // namespace aos::testing |
Austin Schuh | 373f176 | 2021-06-02 21:07:09 -0700 | [diff] [blame] | 13 | |
| 14 | #endif // AOS_TESTING_PATH_H_ |