Add tests for sf::TcpSocket

This commit is contained in:
Chris Thrasher 2023-08-22 00:40:33 -06:00
parent ab06efbe95
commit 90d6d74282

View File

@ -1,8 +1,27 @@
#include <SFML/Network/TcpSocket.hpp> #include <SFML/Network/TcpSocket.hpp>
// Other 1st party headers
#include <SFML/Network/IpAddress.hpp>
#include <catch2/catch_test_macros.hpp>
#include <type_traits> #include <type_traits>
static_assert(!std::is_copy_constructible_v<sf::TcpSocket>); TEST_CASE("[Network] sf::TcpSocket")
static_assert(!std::is_copy_assignable_v<sf::TcpSocket>); {
static_assert(std::is_nothrow_move_constructible_v<sf::TcpSocket>); SECTION("Type traits")
static_assert(std::is_nothrow_move_assignable_v<sf::TcpSocket>); {
STATIC_CHECK(!std::is_copy_constructible_v<sf::TcpSocket>);
STATIC_CHECK(!std::is_copy_assignable_v<sf::TcpSocket>);
STATIC_CHECK(std::is_nothrow_move_constructible_v<sf::TcpSocket>);
STATIC_CHECK(std::is_nothrow_move_assignable_v<sf::TcpSocket>);
}
SECTION("Construction")
{
const sf::TcpSocket tcpSocket;
CHECK(tcpSocket.getLocalPort() == 0);
CHECK(!tcpSocket.getRemoteAddress().has_value());
CHECK(tcpSocket.getRemotePort() == 0);
}
}