blob: ebe63fe6d8b54006f1e41462d3f3a1a9a7093320 [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
Stephan Pleinesd99b1ee2024-02-02 20:56:44 -08007namespace aos::testing {
Austin Schuh373f1762021-06-02 21:07:09 -07008
Austin Schuh60e77942022-05-16 17:48:24 -07009// Returns the path to the provided artifact which works
Austin Schuh373f1762021-06-02 21:07:09 -070010std::string ArtifactPath(std::string_view path);
11
Stephan Pleinesd99b1ee2024-02-02 20:56:44 -080012} // namespace aos::testing
Austin Schuh373f1762021-06-02 21:07:09 -070013
14#endif // AOS_TESTING_PATH_H_