mirror of
https://github.com/SFML/SFML.git
synced 2024-11-25 04:41:05 +08:00
54 lines
1.6 KiB
C++
54 lines
1.6 KiB
C++
#include <SFML/Network.hpp>
|
|
|
|
#include <doctest/doctest.h>
|
|
|
|
#include <limits>
|
|
|
|
template <typename IntegerType>
|
|
static void testPacketStreamOperators(IntegerType expected)
|
|
{
|
|
sf::Packet packet;
|
|
packet << expected;
|
|
IntegerType received;
|
|
packet >> received;
|
|
CHECK(expected == received);
|
|
}
|
|
|
|
TEST_CASE("sf::Packet class - [network]")
|
|
{
|
|
SUBCASE("Stream operators")
|
|
{
|
|
SUBCASE("Int8")
|
|
{
|
|
testPacketStreamOperators(sf::Int8(0));
|
|
testPacketStreamOperators(sf::Int8(1));
|
|
testPacketStreamOperators(std::numeric_limits<sf::Int8>::min());
|
|
testPacketStreamOperators(std::numeric_limits<sf::Int8>::max());
|
|
}
|
|
|
|
SUBCASE("Int16")
|
|
{
|
|
testPacketStreamOperators(sf::Int16(0));
|
|
testPacketStreamOperators(sf::Int16(1));
|
|
testPacketStreamOperators(std::numeric_limits<sf::Int16>::min());
|
|
testPacketStreamOperators(std::numeric_limits<sf::Int16>::max());
|
|
}
|
|
|
|
SUBCASE("Int32")
|
|
{
|
|
testPacketStreamOperators(sf::Int32(0));
|
|
testPacketStreamOperators(sf::Int32(1));
|
|
testPacketStreamOperators(std::numeric_limits<sf::Int32>::min());
|
|
testPacketStreamOperators(std::numeric_limits<sf::Int32>::max());
|
|
}
|
|
|
|
SUBCASE("Int64")
|
|
{
|
|
testPacketStreamOperators(sf::Int64(0));
|
|
testPacketStreamOperators(sf::Int64(1));
|
|
testPacketStreamOperators(std::numeric_limits<sf::Int64>::min());
|
|
testPacketStreamOperators(std::numeric_limits<sf::Int64>::max());
|
|
}
|
|
}
|
|
}
|