blob: 2b6d750a002f1a49fda8164b94f76bec806e35ce [file] [log] [blame]
// Copyright 2014 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.
#include "sql/test/sql_test_suite.h"
#include "sql/test/paths.h"
namespace sql {
SQLTestSuite::SQLTestSuite(int argc, char** argv)
: base::TestSuite(argc, argv) {}
SQLTestSuite::~SQLTestSuite() = default;
void SQLTestSuite::Initialize() {
base::TestSuite::Initialize();
sql::test::RegisterPathProvider();
}
void SQLTestSuite::Shutdown() {
base::TestSuite::Shutdown();
}
} // namespace sql