12345678910111213141516171819202122232425262728293031323334353637383940 |
- #ifndef TEST_TESTSUPPORT_TEST_ARTIFACTS_H_
- #define TEST_TESTSUPPORT_TEST_ARTIFACTS_H_
- #include <stdint.h>
- #include <stdlib.h>
- #include <string>
- namespace webrtc {
- namespace test {
- bool GetTestArtifactsDir(std::string* out_dir);
- bool WriteToTestArtifactsDir(const char* filename,
- const uint8_t* buffer,
- size_t length);
- bool WriteToTestArtifactsDir(const char* filename, const std::string& content);
- }
- }
- #endif
|