Created
December 22, 2015 14:49
-
-
Save miklund/076c241e28f07419ba71 to your computer and use it in GitHub Desktop.
2009-03-24 Run your unit tests on the web
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Title: Run your unit tests on the web | |
# Author: Mikael Lundin | |
# Link: http://blog.mikaellundin.name/2009/03/24/run-your-unit-tests-on-the-web.html |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<litemedia:UnitTestDataSource runat="server" ID="UnitTestDataSource" AssemblyName="LiteMedia.Mint.UnitTests" OnLoad="DataBind" /> | |
<asp:Repeater runat="server" DataSourceID="UnitTestDataSource" OnLoad="DataBind"> | |
<HeaderTemplate><ul></HeaderTemplate> | |
<ItemTemplate> | |
<li class="<%# GetSuccessClass(Container.DataItem) %>"> | |
<span class="name"><%# Container.DataItem %></span> | |
<p class="exception <%# GetSuccessClass(Container.DataItem) %>"> | |
<%# GetException(Container.DataItem) %> | |
</p> | |
</li> | |
</ItemTemplate> | |
<FooterTemplate></ul></FooterTemplate> | |
</asp:Repeater> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<system.web> | |
<pages> | |
<controls> | |
<add tagPrefix="litemedia" namespace="LiteMedia.Utils.Web" assembly="LiteMedia.Utils" /> | |
</controls> | |
</pages> | |
</system.web> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment