testing_value_store_unittest.cc 616 B

123456789101112131415161718192021222324
  1. // Copyright 2014 The Chromium Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style license that can be
  3. // found in the LICENSE file.
  4. #include "components/value_store/testing_value_store.h"
  5. #include "components/value_store/value_store_test_suite.h"
  6. namespace value_store {
  7. class ValueStore;
  8. namespace {
  9. ValueStore* Param(const base::FilePath& file_path) {
  10. return new TestingValueStore();
  11. }
  12. } // namespace
  13. INSTANTIATE_TEST_SUITE_P(TestingValueStore,
  14. ValueStoreTestSuite,
  15. testing::Values(&Param));
  16. } // namespace value_store