chromeos_test_utils.h 678 B

12345678910111213141516171819202122232425
  1. // Copyright (c) 2012 The Chromium 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. #ifndef CHROMEOS_TEST_CHROMEOS_TEST_UTILS_H_
  5. #define CHROMEOS_TEST_CHROMEOS_TEST_UTILS_H_
  6. #include <string>
  7. namespace base {
  8. class FilePath;
  9. }
  10. namespace chromeos {
  11. namespace test_utils {
  12. // Returns the path to the given test data file for this library.
  13. bool GetTestDataPath(const std::string& component,
  14. const std::string& filename,
  15. base::FilePath* data_dir);
  16. } // namespace test_utils
  17. } // namespace chromeos
  18. #endif // CHROMEOS_TEST_CHROMEOS_TEST_UTILS_H_