1 // Copyright 2013 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.
5 #include "ios/web/test/web_test_suite.h"
7 #include "base/metrics/statistics_recorder.h"
11 WebTestSuite::WebTestSuite(int argc
, char** argv
)
12 : base::TestSuite(argc
, argv
) {
15 WebTestSuite::~WebTestSuite() {
18 void WebTestSuite::Initialize() {
19 base::TestSuite::Initialize();
21 // Initialize the histograms subsystem, so that any histograms hit in tests
22 // are correctly registered with the statistics recorder and can be queried
24 base::StatisticsRecorder::Initialize();