public void Constructor_FileWithWrongFormat_FileNotFoundException() { byte[] file = File.ReadAllBytes(FILE_NO_PDF); PdfUtility doc = new PdfUtility(file, null); //Disposing the element doc.Dispose(); }
public void Constructor_FileExists_NoExceptions() { byte[] file = File.ReadAllBytes(FILE_WITH_NO_FIELDS); PdfUtility doc = new PdfUtility(file, null); //Disposing the element doc.Dispose(); }