mirror of
https://github.com/SabreTools/BinaryObjectScanner.git
synced 2026-07-08 18:06:34 +00:00
Update packages
This commit is contained in:
@@ -13,7 +13,7 @@ namespace BinaryObjectScanner.Test.Protection
|
||||
string file = "filename";
|
||||
SabreTools.Data.Models.NewExecutable.Executable model = new();
|
||||
Stream source = new MemoryStream(new byte[1024]);
|
||||
SabreTools.Serialization.Wrappers.NewExecutable exe = new(model, source);
|
||||
SabreTools.Wrappers.NewExecutable exe = new(model, source);
|
||||
|
||||
var checker = new Macrovision();
|
||||
string? actual = checker.CheckExecutable(file, exe, includeDebug: false);
|
||||
@@ -26,7 +26,7 @@ namespace BinaryObjectScanner.Test.Protection
|
||||
string file = "filename";
|
||||
SabreTools.Data.Models.PortableExecutable.Executable model = new();
|
||||
Stream source = new MemoryStream(new byte[1024]);
|
||||
SabreTools.Serialization.Wrappers.PortableExecutable exe = new(model, source);
|
||||
SabreTools.Wrappers.PortableExecutable exe = new(model, source);
|
||||
|
||||
var checker = new Macrovision();
|
||||
string? actual = checker.CheckExecutable(file, exe, includeDebug: false);
|
||||
@@ -60,7 +60,7 @@ namespace BinaryObjectScanner.Test.Protection
|
||||
string file = "filename";
|
||||
SabreTools.Data.Models.ISO9660.Volume model = new();
|
||||
Stream source = new MemoryStream(new byte[1024]);
|
||||
SabreTools.Serialization.Wrappers.ISO9660 iso = new(model, source);
|
||||
SabreTools.Wrappers.ISO9660 iso = new(model, source);
|
||||
|
||||
var checker = new Macrovision();
|
||||
string? actual = checker.CheckDiskImage(file, iso, includeDebug: false);
|
||||
|
||||
Reference in New Issue
Block a user