blob: fa806b74f11d8f0dbf897e9b17192e2760b978fa [file] [log] [blame]
Yong Hongf4872de2019-01-30 19:04:18 +08001/* Copyright 2019 The Chromium OS Authors. All rights reserved.
2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file.
4 */
5
6#ifndef HARDWARE_VERIFIER_TEST_UTILS_H_
7#define HARDWARE_VERIFIER_TEST_UTILS_H_
8
9#include <base/files/file_path.h>
10
Stimim Chendfc191a2020-04-14 17:38:16 +080011#include "hardware_verifier/hardware_verifier.pb.h"
12
Yong Hongf4872de2019-01-30 19:04:18 +080013namespace hardware_verifier {
14
15// Gets the root path to the test data.
16base::FilePath GetTestDataPath();
17
Stimim Chendfc191a2020-04-14 17:38:16 +080018HwVerificationReport LoadHwVerificationReport(const base::FilePath& file_path);
19
Yong Hongf4872de2019-01-30 19:04:18 +080020} // namespace hardware_verifier
21
22#endif // HARDWARE_VERIFIER_TEST_UTILS_H_