diff --git a/TestStack.ConventionTests/Reporting/HtmlConventionResultsReporter.cs b/TestStack.ConventionTests/Reporting/HtmlConventionResultsReporter.cs index 2ad93dc..9d4a2b2 100644 --- a/TestStack.ConventionTests/Reporting/HtmlConventionResultsReporter.cs +++ b/TestStack.ConventionTests/Reporting/HtmlConventionResultsReporter.cs @@ -52,9 +52,11 @@ protected override string Process(IConventionFormatContext context, IEnumerable< { html.RenderBeginTag(HtmlTextWriterTag.Div); html.AddAttribute("style", "margin-left:20px;border-bottom: 1px solid"); + html.RenderBeginTag(HtmlTextWriterTag.H2); html.Write("Conventions for '{0}'", conventionReport.Key); html.RenderEndTag(); + foreach (var conventionResult in conventionReport) { var targetId = @@ -90,8 +92,6 @@ protected override string Process(IConventionFormatContext context, IEnumerable< html.RenderEndTag(); html.RenderEndTag(); } - - html.RenderEndTag(); } html.RenderEndTag(); } @@ -99,9 +99,11 @@ protected override string Process(IConventionFormatContext context, IEnumerable< html.AddAttribute("src", "http://code.jquery.com/jquery.js"); html.RenderBeginTag(HtmlTextWriterTag.Script); html.RenderEndTag(); + html.AddAttribute("src", "http://netdna.bootstrapcdn.com/twitter-bootstrap/2.3.2/js/bootstrap.min.js"); html.RenderBeginTag(HtmlTextWriterTag.Script); html.RenderEndTag(); + html.RenderEndTag(); // html.RenderEndTag(); // html.Flush();