AntonioGanci

Il blog di Antonio Ganci
posts - 201, comments - 420, trackbacks - 31

marzo 2011 Blog Posts

Test automatico per verificare che l'html non contenga errori

Dopo che ci è scappato un errore nell'html del sito su cui stiamo lavorando, abbiamo deciso di scrivere un test che validi l'html prodotto. Per raggiungere l'obiettivo utilizziamo l'utility Tidy che si puo' scaricare da qui È un piccolo eseguibile a cui si puo' passare un html e verificare che non contenga errori. Il codice del test è piuttosto semplice: [Test] public void ValidateHtml() { var html = new WebClient().DownloadString(@"http://someurl.com"); process = new Process(); process.StartInfo.FileName = "tidy.exe"; process.StartInfo.Arguments = "-e"; process.StartInfo.UseShellExecute = false; process.StartInfo.CreateNoWindow = true; process.StartInfo.RedirectStandardError...

posted @ lunedì 28 marzo 2011 15:53 | Feedback (1) | Filed Under [ Tips ]

Powered by:
Powered By Subtext Powered By ASP.NET