Example #1
0
 public void PdfConstructorTest()
 {
     string xhtmlFile = string.Empty;
     string cssFile = string.Empty;
     Pdf target = new Pdf(xhtmlFile, cssFile);
     Assert.AreEqual(typeof(Pdf), target.GetType());
 }
Example #2
0
 public void PdfConstructorTest1()
 {
     Pdf target = new Pdf();
     Assert.AreEqual(typeof(Pdf), target.GetType());
 }