Index: sql/sqlite_features_unittest.cc |
=================================================================== |
--- sql/sqlite_features_unittest.cc (revision 180901) |
+++ sql/sqlite_features_unittest.cc (working copy) |
@@ -42,7 +42,7 @@ |
public: |
SQLiteFeaturesTest() : error_(SQLITE_OK) {} |
- void SetUp() { |
+ virtual void SetUp() { |
ASSERT_TRUE(temp_dir_.CreateUniqueTempDir()); |
ASSERT_TRUE(db_.Open(temp_dir_.path().AppendASCII("SQLStatementTest.db"))); |
@@ -51,7 +51,7 @@ |
db_.set_error_delegate(new StatementErrorHandler(&error_, &sql_text_)); |
} |
- void TearDown() { |
+ virtual void TearDown() { |
// If any error happened the original sql statement can be found in |
// |sql_text_|. |
EXPECT_EQ(SQLITE_OK, error_); |