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

Unified Diff: sql/test/sql_test_suite.cc

Issue 355093003: [sql] Test recovery of corrupt golden file. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add sql.isolate Created 6 years, 5 months 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « sql/test/sql_test_suite.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sql/test/sql_test_suite.cc
diff --git a/sql/test/sql_test_suite.cc b/sql/test/sql_test_suite.cc
new file mode 100644
index 0000000000000000000000000000000000000000..7d9b4e2e1b6b7706da0a693bfd1282bf5cb35349
--- /dev/null
+++ b/sql/test/sql_test_suite.cc
@@ -0,0 +1,25 @@
+// Copyright (c) 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() {}
+
+void SQLTestSuite::Initialize() {
+ base::TestSuite::Initialize();
+ sql::test::RegisterPathProvider();
+}
+
+void SQLTestSuite::Shutdown() {
+ base::TestSuite::Shutdown();
+}
+
+} // namespace sql
« no previous file with comments | « sql/test/sql_test_suite.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698