This test
[Test]
[Arguments("helloworld", "HELLowORLD", 0.19999999f)]
public async Task GetLevenshteinScore(string? value1, string? value2, float score)
{
await Assert.That(StringHelper.GetLevenshteinScore(value1, value2)).IsEqualTo(score);
}
fail with
Expected exactly 3 arguments, but got 4
There is an issue with arguments in source generated part because from VS Test Explorer the test show 0, 20000000 instead of 0.19999999:
