umtest_utils.cc revision aab50e31f0b80ed53a9b8d5dbabcf943974bd32c
1// Copyright (c) 2014 The Chromium OS 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 "update_engine/update_manager/umtest_utils.h"
6
7#include <base/time/time.h>
8
9namespace chromeos_update_manager {
10
11const unsigned UmTestUtils::kDefaultTimeoutInSeconds = 1;
12
13void PrintTo(const EvalStatus& status, ::std::ostream* os) {
14  *os << ToString(status);
15}
16
17}  // namespace chromeos_update_manager
18