| // Copyright 2018 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 "content/browser/indexed_db/scopes/scopes_lock_manager.h" | |
| #include "testing/gtest/include/gtest/gtest.h" | |
| namespace content { | |
| TEST(ScopesLockManager, TestRangePopulation) { | |
| ScopesLockManager::LockRange range("a", "b"); | |
| EXPECT_EQ("a", range.begin); | |
| EXPECT_EQ("b", range.end); | |
| } | |
| } // namespace content |