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 a97456f09ccb27dc0413200bfc90928b9dcbaa9e..c44ee0cb647e97b6c98c0bdd5b2ef6c50760cc8a 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 f6780f0c61caaec9b540ec651b2b6bc20664ba2e..8616fa1863874851e65081332c1abecd879f5d8e 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 c996e00785e941623d24a9c22f71e710107cb29e..79c4b20cc9cca5580c5088bef36064dd0e3446b8 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 4959ee187a916a7b46160de70e86c8681df9526b..6bbb707af4525dca074baee9a509300374c0e755 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 ed0e5b4e3b190e18e2c471c5ca103fb44376d361..93a14e9f44182db6f643fd0ce191398f0be83d48 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 e54bbb91bff5a8c67f8d1ada338a9c01597f4d74..e2d365b4cf49918246b1ce5ae73a6e57b963c073 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;