| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "components/history/core/android/android_urls_database.h" | 5 #include "components/history/core/android/android_urls_database.h" |
| 6 | 6 |
| 7 #include "base/files/file_path.h" | 7 #include "base/files/file_path.h" |
| 8 #include "base/files/scoped_temp_dir.h" | 8 #include "base/files/scoped_temp_dir.h" |
| 9 #include "base/path_service.h" | 9 #include "base/path_service.h" |
| 10 #include "chrome/browser/history/history_database.h" | 10 #include "chrome/browser/history/history_database.h" |
| 11 #include "chrome/browser/history/history_unittest_base.h" | |
| 12 #include "chrome/common/chrome_constants.h" | 11 #include "chrome/common/chrome_constants.h" |
| 13 #include "chrome/common/chrome_paths.h" | 12 #include "chrome/common/chrome_paths.h" |
| 14 #include "chrome/test/base/testing_profile.h" | 13 #include "chrome/test/base/testing_profile.h" |
| 15 #include "components/history/core/browser/history_constants.h" | 14 #include "components/history/core/browser/history_constants.h" |
| 15 #include "components/history/core/test/history_unittest_base.h" |
| 16 | 16 |
| 17 namespace history { | 17 namespace history { |
| 18 | 18 |
| 19 class AndroidURLsMigrationTest : public HistoryUnitTestBase { | 19 class AndroidURLsMigrationTest : public HistoryUnitTestBase { |
| 20 public: | 20 public: |
| 21 AndroidURLsMigrationTest() { | 21 AndroidURLsMigrationTest() { |
| 22 } | 22 } |
| 23 virtual ~AndroidURLsMigrationTest() {} | 23 virtual ~AndroidURLsMigrationTest() {} |
| 24 | 24 |
| 25 protected: | 25 protected: |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 | 59 |
| 60 ASSERT_TRUE(statement.Step()); | 60 ASSERT_TRUE(statement.Step()); |
| 61 EXPECT_EQ(4, statement.ColumnInt64(0)); | 61 EXPECT_EQ(4, statement.ColumnInt64(0)); |
| 62 EXPECT_EQ("www.google.com/", statement.ColumnString(2)); | 62 EXPECT_EQ("www.google.com/", statement.ColumnString(2)); |
| 63 EXPECT_EQ(3, statement.ColumnInt64(1)); | 63 EXPECT_EQ(3, statement.ColumnInt64(1)); |
| 64 | 64 |
| 65 EXPECT_FALSE(statement.Step()); | 65 EXPECT_FALSE(statement.Step()); |
| 66 } | 66 } |
| 67 | 67 |
| 68 } // namespace history | 68 } // namespace history |
| OLD | NEW |