-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathPortTests.cs
36 lines (31 loc) · 962 Bytes
/
PortTests.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
//using Solid.Testing;
//using System;
//using System.Collections.Generic;
//using System.Linq;
//using System.Text;
//using System.Threading.Tasks;
//using Xunit;
//namespace Solid.AspNetCore.Extensions.Wcf.Tests
//{
// public class PortTests : IClassFixture<PortTestFixture>
// {
// private PortTestFixture _fixture;
// public PortTests(PortTestFixture fixture)
// {
// _fixture = fixture;
// }
// public TestingServer TestingServer => _fixture.TestingServer;
// [Fact]
// public void ShouldHostWcfServiceOnSeperatePort()
// {
// var proxied = _fixture.GetProxiedService();
// Assert.True(proxied.IsProxied());
// }
// //[Fact]
// //public void ShouldHostWcfServiceOnMainHostPort()
// //{
// // var direct = _fixture.GetDirectService();
// // Assert.True(direct.IsDirect());
// //}
// }
//}