#ifndef QUICHE_QUIC_TEST_TOOLS_SEND_ALGORITHM_TEST_UTILS_H_
#define QUICHE_QUIC_TEST_TOOLS_SEND_ALGORITHM_TEST_UTILS_H_
#include "quiche/quic/test_tools/send_algorithm_test_result.pb.h"
namespace quic {
namespace test {
bool LoadSendAlgorithmTestResult(SendAlgorithmTestResult* result);
void RecordSendAlgorithmTestResult(uint64_t random_seed,
int64_t simulated_duration_micros);
void CompareSendAlgorithmTestResult(int64_t actual_simulated_duration_micros);
std::string GetFullSendAlgorithmTestName();
std::string GetSendAlgorithmTestResultFilename();
}
}
#endif