chromium/base/test/gmock_expected_support_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.

#ifdef UNSAFE_BUFFERS_BUILD
// TODO(crbug.com/40284755): Remove this and spanify to fix the errors.
#pragma allow_unsafe_buffers
#endif

#include "base/test/gmock_expected_support.h"

#include <string>

#include "base/types/expected.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"

namespace base::test {
namespace {

TEST(GmockExpectedSupportTest, AssertOkAndAssign) {}

TEST(GmockExpectedSupportTest, VoidOkEquals) {}

TEST(GmockExpectedSupportTest, PrintTest) {}

TEST(GmockExpectedSupportTest, HasValue) {}

TEST(GmockExpectedSupportTest, ValueIs) {}

TEST(GmockExpectedSupportTest, ErrorIs) {}

}  // namespace
}  // namespace base::test