public static void GetResolvedLocalhostName___Should_not_return_null_or_white_space___When_called()
        {
            // arrange

            // act
            var actual = MachineName.GetResolvedLocalhostName();

            // assert
            actual.Should().NotBeNullOrWhiteSpace();
        }