- add sources.
[platform/framework/web/crosswalk.git] / src / chrome / browser / value_store / testing_value_store_unittest.cc
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
3 // found in the LICENSE file.
4
5 #include "chrome/browser/value_store/value_store_unittest.h"
6
7 #include "chrome/browser/value_store/testing_value_store.h"
8
9 namespace extensions {
10
11 namespace {
12
13 ValueStore* Param(const base::FilePath& file_path) {
14   return new TestingValueStore();
15 }
16
17 }  // namespace
18
19 INSTANTIATE_TEST_CASE_P(
20     TestingValueStore,
21     ValueStoreTest,
22     testing::Values(&Param));
23
24 }  // namespace extensions