LicenseSetup.cs 292 B

123456789101112131415
  1. using NUnit.Framework;
  2. using QuestPDF.Infrastructure;
  3. namespace QuestPDF.UnitTests
  4. {
  5. [SetUpFixture]
  6. public class LicenseSetup
  7. {
  8. [OneTimeSetUp]
  9. public static void Setup()
  10. {
  11. QuestPDF.Settings.License = LicenseType.Community;
  12. }
  13. }
  14. }