sql_test_suite.cc 573 B

12345678910111213141516171819202122232425
  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. #include "sql/test/sql_test_suite.h"
  5. #include "sql/test/paths.h"
  6. namespace sql {
  7. SQLTestSuite::SQLTestSuite(int argc, char** argv)
  8. : base::TestSuite(argc, argv) {}
  9. SQLTestSuite::~SQLTestSuite() = default;
  10. void SQLTestSuite::Initialize() {
  11. base::TestSuite::Initialize();
  12. sql::test::RegisterPathProvider();
  13. }
  14. void SQLTestSuite::Shutdown() {
  15. base::TestSuite::Shutdown();
  16. }
  17. } // namespace sql