7 #include "flutter/fml/paths.h"
13 std::stringstream stream;
14 stream <<
"Test" << flutter::testing::GetCurrentTestName() <<
".db";
15 archive_file_name_ = stream.str();
21 return fml::paths::JoinPaths(
22 {flutter::testing::GetFixturesPath(), archive_file_name_});
33 void ArchivistFixture::DeleteArchiveFile()
const {
34 auto fixtures = flutter::testing::OpenFixturesDirectory();
35 if (fml::FileExists(fixtures, archive_file_name_.c_str())) {
36 fml::UnlinkFile(fixtures, archive_file_name_.c_str());