using System; using System.IO; using NUnit.Framework; namespace ASPCommenter { /// /// Unit tests for ExtractCommentTask. /// [TestFixture()] public class ExtractCommentTaskTest { [Test()] public void TestRun() { ExtractCommentTask task = new ExtractCommentTask(); task.Fileset.FileNames.Add(@"..\..\test.asp"); task.Output = new FileInfo(@"..\..\out.xml"); task.ExtractComment(); } } }