chromium/base/test/mock_callback_unittest.cc

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

#include "base/test/mock_callback.h"

#include "base/functional/callback.h"
#include "testing/gmock/include/gmock/gmock.h"

InSequence;
Return;

namespace base {
namespace {

TEST(MockCallbackTest, ZeroArgs) {}

TEST(MockCallbackTest, WithArgs) {}

TEST(MockCallbackTest, ZeroArgsOnce) {}

TEST(MockCallbackTest, WithArgsOnce) {}

TEST(MockCallbackTest, Typedefs) {}

}  // namespace
}  // namespace base