|
@@ -1,6 +1,7 @@
|
|
|
using System;
|
|
using System;
|
|
|
using System.Diagnostics;
|
|
using System.Diagnostics;
|
|
|
using System.Linq;
|
|
using System.Linq;
|
|
|
|
|
+using System.Runtime.InteropServices;
|
|
|
using NUnit.Framework;
|
|
using NUnit.Framework;
|
|
|
using QuestPDF.Fluent;
|
|
using QuestPDF.Fluent;
|
|
|
using QuestPDF.Helpers;
|
|
using QuestPDF.Helpers;
|
|
@@ -10,6 +11,12 @@ namespace QuestPDF.UnitTests;
|
|
|
|
|
|
|
|
public class DocumentCompressionTests
|
|
public class DocumentCompressionTests
|
|
|
{
|
|
{
|
|
|
|
|
+ public DocumentCompressionTests()
|
|
|
|
|
+ {
|
|
|
|
|
+ if (RuntimeInformation.RuntimeIdentifier == "linux-musl-x64")
|
|
|
|
|
+ Assert.Ignore("The DocumentOperations functionality is not supported on Linux Musl, e.g. Alpine.");
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
[Test]
|
|
[Test]
|
|
|
public void Test()
|
|
public void Test()
|
|
|
{
|
|
{
|