webrtc/net/dcsctp/public/mock_dcsctp_socket_test.cc
Victor Boivie c362eb2d1c dcsctp: Add mocks
This is for convenience to the users of dcSCTP, which may want to have
unit tests where the socket is mocked. And since it's best practice not
to mock other teams' or project's classes, a mock will be provided by
the upstream project - this one.

Bug: webrtc:12614
Change-Id: I65d5d21097e7feda9162567560d3838759c962fc
Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/224161
Reviewed-by: Florent Castelli <orphis@webrtc.org>
Commit-Queue: Victor Boivie <boivie@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#34385}
2021-06-29 10:19:11 +00:00

27 lines
841 B
C++

/*
* Copyright (c) 2021 The WebRTC project authors. All Rights Reserved.
*
* Use of this source code is governed by a BSD-style license
* that can be found in the LICENSE file in the root of the source
* tree. An additional intellectual property rights grant can be found
* in the file PATENTS. All contributing project authors may
* be found in the AUTHORS file in the root of the source tree.
*/
#include "net/dcsctp/public/mock_dcsctp_socket.h"
#include "rtc_base/gunit.h"
#include "test/gmock.h"
namespace dcsctp {
// This test exists to ensure that all methods are mocked correctly, and to
// generate compiler errors if they are not.
TEST(MockDcSctpSocketTest, CanInstantiateAndConnect) {
testing::StrictMock<MockDcSctpSocket> socket;
EXPECT_CALL(socket, Connect);
socket.Connect();
}
} // namespace dcsctp