Index: base/test/histogram_tester_unittest.cc |
diff --git a/base/test/histogram_tester_unittest.cc b/base/test/histogram_tester_unittest.cc |
index e26828c01d3cd984a74fd6a50937c19c5413d17a..56ab2b716e2b91d42c40a53691f4d83a821498a0 100644 |
--- a/base/test/histogram_tester_unittest.cc |
+++ b/base/test/histogram_tester_unittest.cc |
@@ -7,10 +7,13 @@ |
#include "base/memory/scoped_ptr.h" |
#include "base/metrics/histogram_macros.h" |
#include "base/metrics/histogram_samples.h" |
+#include "testing/gmock/include/gmock/gmock.h" |
#include "testing/gtest/include/gtest/gtest.h" |
namespace base { |
+using ::testing::ElementsAre; |
+ |
const std::string kHistogram1 = "Test1"; |
const std::string kHistogram2 = "Test2"; |
const std::string kHistogram3 = "Test3"; |
@@ -78,4 +81,16 @@ TEST_F(HistogramTesterTest, TestBucketsSampleWithScope) { |
tester.ExpectTotalCount(kHistogram4, 1); |
} |
+TEST_F(HistogramTesterTest, TestGetAllSamples) { |
+ HistogramTester tester; |
+ UMA_HISTOGRAM_COUNTS_100(kHistogram2, 2); |
+ UMA_HISTOGRAM_COUNTS_100(kHistogram2, 3); |
+ UMA_HISTOGRAM_COUNTS_100(kHistogram2, 3); |
+ UMA_HISTOGRAM_COUNTS_100(kHistogram2, 5); |
+ |
+ EXPECT_THAT(tester.GetAllSamples(kHistogram2), |
+ ElementsAre(std::make_pair(2, 1), std::make_pair(3, 2), |
+ std::make_pair(5, 1))); |
ncarter (slow)
2015/06/24 17:28:44
I patched this in and played around with it. I thi
twifkak
2015/06/25 20:21:38
Okay, sounds good!
Do you want me to implement Ge
|
+} |
+ |
} // namespace base |