blob: 8c6910a69fa18b5afe09fe2628cffcea858c49e6 [file] [log] [blame]
// Copyright 2015 The Chromium OS Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef SETTINGSD_TEST_HELPERS_H_
#define SETTINGSD_TEST_HELPERS_H_
#include <iostream>
#include <memory>
#include <string>
#include <base/values.h>
#include "settingsd/key.h"
namespace settingsd {
std::unique_ptr<base::Value> MakeIntValue(int i);
std::unique_ptr<base::Value> MakeNullValue();
std::unique_ptr<base::Value> MakeStringValue(const std::string& str);
// A gtest print helper for Keys.
void PrintTo(const Key& key, std::ostream* os);
} // namespace settingsd
#endif // SETTINGSD_TEST_HELPERS_H_