-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathMultipleContractTests.cs
49 lines (42 loc) · 1.29 KB
/
MultipleContractTests.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
37
38
39
40
41
42
43
44
45
46
47
48
49
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 MultipleContractTests : IClassFixture<MultipleContractTestFixture>
{
private MultipleContractTestFixture _fixture;
public MultipleContractTests(MultipleContractTestFixture fixture)
{
_fixture = fixture;
}
[Fact]
public void ShouldEcho()
{
var service = _fixture.GetEchoService();
var expected = Guid.NewGuid().ToString();
var value = service.Echo(expected);
Assert.Equal(expected, value);
}
[Fact]
public void ShouldEchoUsingRedirectedService()
{
var service = _fixture.GetRedirectedEchoService();
var expected = Guid.NewGuid().ToString();
var value = service.Echo(expected);
Assert.Equal(expected, value);
}
[Fact]
public void ShouldIncrement()
{
var service = _fixture.GetCounterService();
var first = service.Increment();
var second = service.Increment();
Assert.Equal(1, first);
Assert.Equal(2, second);
}
}
}