mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-04-27 11:17:31 +02:00
remove nfluent
This commit is contained in:
@@ -1,8 +1,6 @@
|
||||
// Copyright © WireMock.Net
|
||||
|
||||
using AnyOfTypes;
|
||||
using AwesomeAssertions;
|
||||
using NFluent;
|
||||
using WireMock.Matchers;
|
||||
using WireMock.Models;
|
||||
|
||||
@@ -123,7 +121,7 @@ public class WildcardMatcherTest
|
||||
var name = matcher.Name;
|
||||
|
||||
// Assert
|
||||
Check.That(name).Equals("WildcardMatcher");
|
||||
name.Should().Be("WildcardMatcher");
|
||||
}
|
||||
|
||||
[Fact]
|
||||
@@ -136,7 +134,7 @@ public class WildcardMatcherTest
|
||||
var patterns = matcher.GetPatterns();
|
||||
|
||||
// Assert
|
||||
Check.That(patterns).ContainsExactly(new AnyOf<string, StringPattern>("x"));
|
||||
patterns.Should().Equal(new[] { new AnyOf<string, StringPattern>("x") });
|
||||
}
|
||||
|
||||
[Fact]
|
||||
@@ -148,6 +146,6 @@ public class WildcardMatcherTest
|
||||
// Act
|
||||
var result = matcher.IsMatch("m").Score;
|
||||
|
||||
Check.That(result).IsEqualTo(0.0);
|
||||
result.Should().Be(0.0);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user