Exemplo n.º 1
0
        public void WriteHtmlThrowsOnInvalidArguments()
        {
            var f = new Fattura();

            Assert.ThrowsException <ArgumentNullException>(() => f.WriteHtml(outPath: null, xslPath: "xslPath"));
            Assert.ThrowsException <ArgumentNullException>(() => f.WriteHtml(outPath: "fileName", xslPath: null));
        }
Exemplo n.º 2
0
        public void WriteHtml()
        {
            var f       = new Fattura();
            var outFile = Path.GetTempFileName();

            f.ReadXml("Samples/IT02182030391_32.xml");

            f.WriteHtml(outFile, "Samples/fatturaPA_v1.2.1.xsl");

            var bytes = File.ReadAllBytes(outFile);

            Assert.IsTrue(bytes.Length > 2048);
        }