method to match urls and template urls

This commit is contained in:
Tom Gardham-Pallister
2016-07-08 19:33:22 +01:00
parent 7332da7230
commit 4f2d94ceba
21 changed files with 718 additions and 96 deletions

View File

@ -0,0 +1,24 @@
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Hosting;
using Ocelot;
using Xunit;
namespace Ocelot.AcceptanceTests
{
public class RouterTests
{
public RouterTests()
{
}
[Fact]
public void should_route_request()
{
}
}
}