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

Unified Diff: sql/test/error_callback_support.cc

Issue 17726002: [sql] Callback and scoped-ignore tests for sql::Statement. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: prevent nesting, TODO. Created 7 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/error_callback_support.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sql/test/error_callback_support.cc
diff --git a/sql/test/error_callback_support.cc b/sql/test/error_callback_support.cc
new file mode 100644
index 0000000000000000000000000000000000000000..9f0e22f381ba1ee1521af1ec1c3193ad40308dce
--- /dev/null
+++ b/sql/test/error_callback_support.cc
@@ -0,0 +1,28 @@
+// Copyright 2013 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/error_callback_support.h"
+
+#include "testing/gtest/include/gtest/gtest.h"
+
+namespace sql {
+
+void CaptureErrorCallback(int* error_pointer, int error, sql::Statement* stmt) {
+ *error_pointer = error;
+}
+
+ScopedErrorCallback::ScopedErrorCallback(
+ sql::Connection* db,
+ const sql::Connection::ErrorCallback& cb)
+ : db_(db) {
+ // Make sure someone isn't trying to nest things.
+ EXPECT_FALSE(db_->has_error_callback());
+ db_->set_error_callback(cb);
+}
+
+ScopedErrorCallback::~ScopedErrorCallback() {
+ db_->reset_error_callback();
+}
+
+} // namespace
« no previous file with comments | « sql/test/error_callback_support.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698