I don't understand why my test returns :
System.InvalidOperationException : The test method expected 1 parameter value, but 0 parameter values were provided. Exception doesn't have a stacktrace
while my very basic test matches with examples found here and there :
[Theory]
[InlineData("‘")]
[InlineData("«")]
[InlineData("£")]
[InlineData("€")]
[InlineData("à")]
[InlineData("é")]
[InlineData("î")]
[InlineData("ï")]
public void IsAsciiComplient_Fail(string c)
{
//Act
bool actual = c.IsAsciiComplient();
//Test
Assert.False(actual);
}
I've also tried with char instead of string with no luck.
As there is no stack trace, how can i fixe it please? Any clue on what is going wrong?