Create and use constructors in Skippers

This commit is contained in:
Matt Nadareski
2024-02-29 01:27:16 -05:00
parent 57b0362d31
commit 78ff313ddc
15 changed files with 117 additions and 371 deletions

View File

@@ -80,6 +80,17 @@ namespace SabreTools.Skippers.Tests
#endregion
/// <summary>
/// Constructor
/// </summary>
public OrTest(string? offset, string? value, bool result, string? mask)
{
Offset = offset;
Value = value;
Result = result;
Mask = mask;
}
/// <inheritdoc/>
public override bool Passes(Stream input)
{