From f31220f0c78213839efd5554be1e0a986935a2ba Mon Sep 17 00:00:00 2001 From: Rutherther Date: Mon, 2 Jan 2023 09:58:02 +0100 Subject: [PATCH] chore: update tests --- .../Converters/Basic/BoolStringConverterTests.cs | 2 ++ .../Converters/Basic/StringConverterTests.cs | 1 + .../Converters/Packets/InPacketConverterTests.cs | 2 ++ .../Converters/Packets/MovePacketConverterTests.cs | 2 ++ .../Converters/Packets/PinitPacketConverterTest.cs | 2 ++ .../Converters/Packets/SkiPacketConverterTests.cs | 3 +++ 6 files changed, 12 insertions(+) diff --git a/Tests/NosSmooth.Packets.Tests/Converters/Basic/BoolStringConverterTests.cs b/Tests/NosSmooth.Packets.Tests/Converters/Basic/BoolStringConverterTests.cs index a97456f..c44ee0c 100644 --- a/Tests/NosSmooth.Packets.Tests/Converters/Basic/BoolStringConverterTests.cs +++ b/Tests/NosSmooth.Packets.Tests/Converters/Basic/BoolStringConverterTests.cs @@ -6,6 +6,8 @@ using Microsoft.Extensions.DependencyInjection; using NosSmooth.PacketSerializer.Abstractions; +using NosSmooth.PacketSerializer.Converters.Basic; +using NosSmooth.PacketSerializer.Extensions; using Xunit; namespace NosSmooth.Packets.Tests.Converters.Basic; diff --git a/Tests/NosSmooth.Packets.Tests/Converters/Basic/StringConverterTests.cs b/Tests/NosSmooth.Packets.Tests/Converters/Basic/StringConverterTests.cs index f6780f0..8616fa1 100644 --- a/Tests/NosSmooth.Packets.Tests/Converters/Basic/StringConverterTests.cs +++ b/Tests/NosSmooth.Packets.Tests/Converters/Basic/StringConverterTests.cs @@ -7,6 +7,7 @@ using System.ComponentModel; using Microsoft.Extensions.DependencyInjection; using NosSmooth.PacketSerializer.Abstractions; +using NosSmooth.PacketSerializer.Extensions; using Xunit; namespace NosSmooth.Packets.Tests.Converters.Basic; diff --git a/Tests/NosSmooth.Packets.Tests/Converters/Packets/InPacketConverterTests.cs b/Tests/NosSmooth.Packets.Tests/Converters/Packets/InPacketConverterTests.cs index c996e00..79c4b20 100644 --- a/Tests/NosSmooth.Packets.Tests/Converters/Packets/InPacketConverterTests.cs +++ b/Tests/NosSmooth.Packets.Tests/Converters/Packets/InPacketConverterTests.cs @@ -13,7 +13,9 @@ using NosSmooth.Packets.Server.Entities; using NosSmooth.Packets.Server.Maps; using NosSmooth.Packets.Server.Players; using NosSmooth.Packets.Server.Weapons; +using NosSmooth.PacketSerializer; using NosSmooth.PacketSerializer.Abstractions.Attributes; +using NosSmooth.PacketSerializer.Extensions; using Xunit; namespace NosSmooth.Packets.Tests.Converters.Packets; diff --git a/Tests/NosSmooth.Packets.Tests/Converters/Packets/MovePacketConverterTests.cs b/Tests/NosSmooth.Packets.Tests/Converters/Packets/MovePacketConverterTests.cs index 4959ee1..6bbb707 100644 --- a/Tests/NosSmooth.Packets.Tests/Converters/Packets/MovePacketConverterTests.cs +++ b/Tests/NosSmooth.Packets.Tests/Converters/Packets/MovePacketConverterTests.cs @@ -7,7 +7,9 @@ using Microsoft.Extensions.DependencyInjection; using NosSmooth.Packets.Enums; using NosSmooth.Packets.Server.Entities; +using NosSmooth.PacketSerializer; using NosSmooth.PacketSerializer.Abstractions.Attributes; +using NosSmooth.PacketSerializer.Extensions; using Xunit; namespace NosSmooth.Packets.Tests.Converters.Packets; diff --git a/Tests/NosSmooth.Packets.Tests/Converters/Packets/PinitPacketConverterTest.cs b/Tests/NosSmooth.Packets.Tests/Converters/Packets/PinitPacketConverterTest.cs index ed0e5b4..93a14e9 100644 --- a/Tests/NosSmooth.Packets.Tests/Converters/Packets/PinitPacketConverterTest.cs +++ b/Tests/NosSmooth.Packets.Tests/Converters/Packets/PinitPacketConverterTest.cs @@ -7,7 +7,9 @@ using Microsoft.Extensions.DependencyInjection; using NosSmooth.Packets.Enums; using NosSmooth.Packets.Server.Groups; +using NosSmooth.PacketSerializer; using NosSmooth.PacketSerializer.Abstractions.Attributes; +using NosSmooth.PacketSerializer.Extensions; using Xunit; namespace NosSmooth.Packets.Tests.Converters.Packets; diff --git a/Tests/NosSmooth.Packets.Tests/Converters/Packets/SkiPacketConverterTests.cs b/Tests/NosSmooth.Packets.Tests/Converters/Packets/SkiPacketConverterTests.cs index e54bbb9..e2d365b 100644 --- a/Tests/NosSmooth.Packets.Tests/Converters/Packets/SkiPacketConverterTests.cs +++ b/Tests/NosSmooth.Packets.Tests/Converters/Packets/SkiPacketConverterTests.cs @@ -8,7 +8,10 @@ using Microsoft.Extensions.DependencyInjection; using NosSmooth.Packets.Enums; using NosSmooth.Packets.Server.Groups; using NosSmooth.Packets.Server.Skills; +using NosSmooth.PacketSerializer; using NosSmooth.PacketSerializer.Abstractions.Attributes; +using NosSmooth.PacketSerializer.Extensions; +using NosSmooth.PacketSerializer.Packets; using Xunit; namespace NosSmooth.Packets.Tests.Converters.Packets; -- 2.48.1