Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3440)

Unified Diff: base/test/gtest_util.h

Issue 861093004: iOS gtest launcher: make simple unit tests like base_unittests work (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | base/test/gtest_util.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/test/gtest_util.h
diff --git a/base/test/gtest_util.h b/base/test/gtest_util.h
index d10c72fcf6fbc25e1fa6f3789af65a41e30993d6..51cc33e2c82a8ef60c9e55d9827febcf021c2699 100644
--- a/base/test/gtest_util.h
+++ b/base/test/gtest_util.h
@@ -18,6 +18,11 @@ class FilePath;
// First value is test case name, second one is test name.
typedef std::pair<std::string, std::string> SplitTestName;
+// Constructs a full test name given a test case name and a test name.
sky 2015/01/22 18:40:46 An example would help clarify this.
Paweł Hajdan Jr. 2015/01/23 13:29:58 Done.
+std::string FormatFullTestName(const std::string& test_case_name,
+ const std::string& test_name);
+
+
sky 2015/01/22 18:40:46 nit: only one newline here.
Paweł Hajdan Jr. 2015/01/23 13:29:58 Done.
// Returns a vector of gtest-based tests compiled into
// current executable.
std::vector<SplitTestName> GetCompiledInTests();
« no previous file with comments | « no previous file | base/test/gtest_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698