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

Side by Side Diff: base/test/gtest_util.cc

Issue 761903003: Update from https://crrev.com/306655 (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 years 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 unified diff | Download patch
« no previous file with comments | « base/test/gtest_util.h ('k') | base/test/launcher/test_launcher.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2014 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
5 #include "base/test/gtest_util.h"
6
7 #include "base/files/file_path.h"
8 #include "base/json/json_file_value_serializer.h"
9 #include "base/values.h"
10 #include "testing/gtest/include/gtest/gtest.h"
11
12 namespace base {
13
14 std::vector<SplitTestName> GetCompiledInTests() {
15 testing::UnitTest* const unit_test = testing::UnitTest::GetInstance();
16
17 std::vector<SplitTestName> tests;
18 for (int i = 0; i < unit_test->total_test_case_count(); ++i) {
19 const testing::TestCase* test_case = unit_test->GetTestCase(i);
20 for (int j = 0; j < test_case->total_test_count(); ++j) {
21 const testing::TestInfo* test_info = test_case->GetTestInfo(j);
22 tests.push_back(std::make_pair(test_case->name(), test_info->name()));
23 }
24 }
25 return tests;
26 }
27
28 bool WriteCompiledInTestsToFile(const FilePath& path) {
29 std::vector<SplitTestName> tests(GetCompiledInTests());
30
31 ListValue root;
32 for (size_t i = 0; i < tests.size(); ++i) {
33 DictionaryValue* test_info = new DictionaryValue;
34 test_info->SetString("test_case_name", tests[i].first);
35 test_info->SetString("test_name", tests[i].second);
36 root.Append(test_info);
37 }
38
39 JSONFileValueSerializer serializer(path);
40 return serializer.Serialize(root);
41 }
42
43 } // namespace
OLDNEW
« no previous file with comments | « base/test/gtest_util.h ('k') | base/test/launcher/test_launcher.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698