Rename 'MockUdpSocket' to 'FakeUdpSocket'

Change-Id: I774dd6415d6c77a0a3f7a22d6a5d3d7438d40517
Reviewed-on: https://chromium-review.googlesource.com/c/openscreen/+/1779149
Reviewed-by: Max Yakimakha <yakimakha@chromium.org>
Commit-Queue: Ryan Keane <rwkeane@google.com>
diff --git a/platform/api/socket_integration_unittest.cc b/platform/api/socket_integration_unittest.cc
index d7fd3ae..a6c8157 100644
--- a/platform/api/socket_integration_unittest.cc
+++ b/platform/api/socket_integration_unittest.cc
@@ -6,7 +6,7 @@
 #include "platform/api/time.h"
 #include "platform/test/fake_clock.h"
 #include "platform/test/fake_task_runner.h"
-#include "platform/test/mock_udp_socket.h"
+#include "platform/test/fake_udp_socket.h"
 
 namespace openscreen {
 namespace platform {
@@ -20,7 +20,7 @@
   const uint8_t kIpV4AddrAny[4] = {};
   FakeClock clock(Clock::now());
   FakeTaskRunner task_runner(&clock);
-  MockUdpSocket::MockClient client;
+  FakeUdpSocket::MockClient client;
   ErrorOr<UdpSocketUniquePtr> create_result = UdpSocket::Create(
       &task_runner, &client, IPEndpoint{IPAddress(kIpV4AddrAny), 0});
   ASSERT_TRUE(create_result) << create_result.error();
@@ -38,7 +38,7 @@
   const uint8_t kIpV6AddrAny[16] = {};
   FakeClock clock(Clock::now());
   FakeTaskRunner task_runner(&clock);
-  MockUdpSocket::MockClient client;
+  FakeUdpSocket::MockClient client;
   ErrorOr<UdpSocketUniquePtr> create_result = UdpSocket::Create(
       &task_runner, &client, IPEndpoint{IPAddress(kIpV6AddrAny), 0});
   ASSERT_TRUE(create_result) << create_result.error();