Skip to content

Commit

Permalink
Change tests to run on IIS express and not require admin.
Browse files Browse the repository at this point in the history
  • Loading branch information
davidfowl committed Nov 16, 2012
1 parent 0ac6b1f commit 89aa6ad
Show file tree
Hide file tree
Showing 16 changed files with 2,064 additions and 318 deletions.
889 changes: 889 additions & 0 deletions build/applicationHost.config

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ public class HubProxyFacts : HostedTest
[Theory]
[InlineData(HostType.Memory, TransportType.ServerSentEvents)]
[InlineData(HostType.Memory, TransportType.LongPolling)]
[InlineData(HostType.IIS, TransportType.ServerSentEvents)]
[InlineData(HostType.IIS, TransportType.LongPolling)]
[InlineData(HostType.IISExpress, TransportType.ServerSentEvents)]
[InlineData(HostType.IISExpress, TransportType.LongPolling)]
public void EndToEndTest(HostType hostType, TransportType transportType)
{
using (var host = CreateHost(hostType, transportType))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
{
public enum HostType
{
IIS,
IISExpress,
Memory
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ protected ITestHost CreateHost(HostType hostType, TransportType transportType)

switch (hostType)
{
case HostType.IIS:
host = new IISTestHost();
case HostType.IISExpress:
host = new IISExpressTestHost();
host.Transport = CreateTransport(transportType);
break;
case HostType.Memory:
Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

Loading

0 comments on commit 89aa6ad

Please sign in to comment.