mirror of
https://github.com/kwsch/NHSE.git
synced 2026-04-16 21:56:00 -05:00
Check the other bind list too don't bother checking that a bound index actually exists in the item pocket
18 lines
381 B
C#
18 lines
381 B
C#
using FluentAssertions;
|
|
using NHSE.Injection;
|
|
using Xunit;
|
|
|
|
namespace NHSE.Tests
|
|
{
|
|
public static class InjectionTests
|
|
{
|
|
[Fact]
|
|
public static void VerifyItemBinary()
|
|
{
|
|
var data = Properties.Resources.itempacket;
|
|
bool result = PocketInjector.ValidateItemBinary(data);
|
|
result.Should().BeTrue();
|
|
}
|
|
}
|
|
}
|