chromium/components/reporting/util/statusor_unittest.cc

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

#include "components/reporting/util/statusor.h"

#include <memory>
#include <utility>

#include "base/functional/bind.h"
#include "base/functional/callback_forward.h"
#include "base/memory/weak_ptr.h"
#include "base/task/sequenced_task_runner.h"
#include "base/task/thread_pool.h"
#include "base/test/task_environment.h"
#include "base/types/expected.h"
#include "components/reporting/util/status.h"
#include "components/reporting/util/status_macros.h"
#include "components/reporting/util/test_support_callbacks.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"

AllOf;
Eq;
Property;
StrEq;

namespace reporting {
namespace {

TEST(StatusOr, MoveConstructFromAndExtractToStatusImplicitly) {}

TEST(StatusOr, CopyConstructFromAndExtractToStatusImplicitly) {}

TEST(StatusOr, CallbackAfterDeletion) {}
}  // namespace
}  // namespace reporting