blob: be6a86f795853f00775cc8fe091d7719ad91f078 [file] [log] [blame]
Gilad Arnold67ed78d2014-04-23 13:17:46 -07001// 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
Alex Deymo63784a52014-05-28 10:46:14 -07005#include "update_engine/update_manager/umtest_utils.h"
Gilad Arnold67ed78d2014-04-23 13:17:46 -07006
Alex Deymoaab50e32014-11-10 19:55:35 -08007#include <base/time/time.h>
8
Alex Deymo63784a52014-05-28 10:46:14 -07009namespace chromeos_update_manager {
Gilad Arnold67ed78d2014-04-23 13:17:46 -070010
Alex Deymo63784a52014-05-28 10:46:14 -070011const unsigned UmTestUtils::kDefaultTimeoutInSeconds = 1;
Gilad Arnold67ed78d2014-04-23 13:17:46 -070012
Alex Deymo0d11c602014-04-23 20:12:20 -070013void PrintTo(const EvalStatus& status, ::std::ostream* os) {
14 *os << ToString(status);
15}
16
Alex Deymo63784a52014-05-28 10:46:14 -070017} // namespace chromeos_update_manager