mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
Complete overhaul on Skippers
This change involves safety updates for serialization, better definitions of various classes, renames of some classes for accuracy, missing enum decoration, and various fixes.
This commit is contained in:
@@ -6,9 +6,9 @@ using Xunit;
|
||||
namespace SabreTools.Test.Skippers
|
||||
{
|
||||
[Collection("SkipperMatch")]
|
||||
public class SkipperRuleTransformTests
|
||||
public class RuleTransformTests
|
||||
{
|
||||
public SkipperRuleTransformTests()
|
||||
public RuleTransformTests()
|
||||
{
|
||||
SkipperMatch.Init(false);
|
||||
}
|
||||
@@ -231,7 +231,7 @@ namespace SabreTools.Test.Skippers
|
||||
/// <summary>
|
||||
/// Pad the stream to 1KiB then seek to beginning
|
||||
/// </summary>
|
||||
private void PadAndReset(MemoryStream ms)
|
||||
private static void PadAndReset(MemoryStream ms)
|
||||
{
|
||||
for (long i = ms.Length; i < 1024; i++)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user