summaryrefslogtreecommitdiffstats
path: root/chromeos/chromeos_test_utils.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromeos/chromeos_test_utils.h')
-rw-r--r--chromeos/chromeos_test_utils.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/chromeos/chromeos_test_utils.h b/chromeos/chromeos_test_utils.h
new file mode 100644
index 0000000..b424580
--- /dev/null
+++ b/chromeos/chromeos_test_utils.h
@@ -0,0 +1,23 @@
+// Copyright (c) 2012 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef CHROMEOS_CHROMEOS_TEST_UTILS_H_
+#define CHROMEOS_CHROMEOS_TEST_UTILS_H_
+
+#include <string>
+
+class FilePath;
+
+namespace chromeos {
+namespace test_utils {
+
+// Returns the path to the given test data file for this library.
+bool GetTestDataPath(const std::string& component,
+ const std::string& filename,
+ FilePath* data_dir);
+
+} // namespace test_utils
+} // namespace chromeos
+
+#endif // CHROMEOS_CHROMEOS_TEST_UTILS_H_