()
| 44 | } |
| 45 | |
| 46 | [Test] |
| 47 | public void CanPrintTwoPages() |
| 48 | { |
| 49 | var options = new PrintOptions(); |
| 50 | |
| 51 | options.AddPageRangeToPrint("1-2"); |
| 52 | |
| 53 | var pdf = printer.Print(options); |
| 54 | |
| 55 | Assert.That(pdf.AsBase64EncodedString, Does.Contain(MagicString)); |
| 56 | } |
| 57 | |
| 58 | [Test] |
| 59 | public void CanPrintWithMostParams() |
nothing calls this directly
no test coverage detected