mirror of
https://github.com/nsnail/Ocelot.git
synced 2025-04-24 06:02:51 +08:00
25 lines
397 B
C#
25 lines
397 B
C#
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()
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|