Created
January 14, 2016 19:31
-
-
Save miklund/28579976127b75826aa6 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