mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-03-24 18:11:10 +01:00
87 lines
1.9 KiB
C#
87 lines
1.9 KiB
C#
// Copyright © WireMock.Net
|
|
|
|
|
|
using WireMock.Matchers;
|
|
|
|
namespace WireMock.Net.Tests.Matchers;
|
|
|
|
public class SimMetricsMatcherTests
|
|
{
|
|
[Fact]
|
|
public void SimMetricsMatcher_GetName()
|
|
{
|
|
// Assign
|
|
var matcher = new SimMetricsMatcher("X");
|
|
|
|
// Act
|
|
string name = matcher.Name;
|
|
|
|
// Assert
|
|
name.Should().Be("SimMetricsMatcher.Levenstein");
|
|
}
|
|
|
|
[Fact]
|
|
public void SimMetricsMatcher_GetPatterns()
|
|
{
|
|
// Assign
|
|
var matcher = new SimMetricsMatcher("X");
|
|
|
|
// Act
|
|
var patterns = matcher.GetPatterns();
|
|
|
|
// Assert
|
|
patterns.Should().ContainSingle("X");
|
|
}
|
|
|
|
[Fact]
|
|
public void SimMetricsMatcher_IsMatch_1()
|
|
{
|
|
// Assign
|
|
var matcher = new SimMetricsMatcher("The cat walks in the street.");
|
|
|
|
// Act
|
|
double result = matcher.IsMatch("The car drives in the street.").Score;
|
|
|
|
// Assert
|
|
result.Should().BeLessThan(1.0).And.BeGreaterThan(0.5);
|
|
}
|
|
|
|
[Fact]
|
|
public void SimMetricsMatcher_IsMatch_2()
|
|
{
|
|
// Assign
|
|
var matcher = new SimMetricsMatcher("The cat walks in the street.");
|
|
|
|
// Act
|
|
double result = matcher.IsMatch("Hello").Score;
|
|
|
|
// Assert
|
|
result.Should().BeLessThan(0.1).And.BeGreaterThan(0.05);
|
|
}
|
|
|
|
[Fact]
|
|
public void SimMetricsMatcher_IsMatch_AcceptOnMatch()
|
|
{
|
|
// Assign
|
|
var matcher = new SimMetricsMatcher("test");
|
|
|
|
// Act
|
|
double result = matcher.IsMatch("test").Score;
|
|
|
|
// Assert
|
|
result.Should().Be(1.0);
|
|
}
|
|
|
|
[Fact]
|
|
public void SimMetricsMatcher_IsMatch_RejectOnMatch()
|
|
{
|
|
// Assign
|
|
var matcher = new SimMetricsMatcher(MatchBehaviour.RejectOnMatch, "test");
|
|
|
|
// Act
|
|
double result = matcher.IsMatch("test").Score;
|
|
|
|
// Assert
|
|
result.Should().Be(0.0);
|
|
}
|
|
} |