mirror of
https://github.com/kwsch/NHSE.git
synced 2026-03-21 17:24:30 -05:00
16 lines
332 B
C#
16 lines
332 B
C#
using FluentAssertions;
|
|
using NHSE.Core;
|
|
using Xunit;
|
|
|
|
namespace NHSE.Tests;
|
|
|
|
public static class InjectionTests
|
|
{
|
|
[Fact]
|
|
public static void VerifyItemBinary()
|
|
{
|
|
var data = Properties.Resources.itempacket;
|
|
bool result = PlayerItemSet.ValidateItemBinary(data);
|
|
result.Should().BeTrue();
|
|
}
|
|
} |