chromium/third_party/inspector_protocol/crdtp/status_test_support.cc

// Copyright 2020 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "status_test_support.h"

namespace crdtp {
void PrintTo(const Status& status, std::ostream* os) {}

namespace {
class StatusIsMatcher : public testing::MatcherInterface<Status> {};

class StatusIsOkMatcher : public testing::MatcherInterface<Status> {};
}  // namespace

testing::Matcher<Status> StatusIsOk() {}

testing::Matcher<Status> StatusIs(Error error, size_t pos) {}
}  // namespace crdtp