In Visual Studio Code, I have a specific unit test that no matter what the result is - is marked with a question mark.
I added other tests and they behave as expected (marked with either a green tick or red x).
What does the question mark mean ?

[Fact]
public async Task LinuxHelper_ExecuteInvalidCommandBash_ShouldFail()
{
//arrange
//act
//var bashExecutionResult = LinuxHelper.RunAsBash(@"dasda");
//assert
10.Should().Be(11);
//bashExecutionResult.Succeeded.Should().BeFalse();
//bashExecutionResult.Error.Should().NotBeNullOrEmpty();
//bashExecutionResult.ExitCode.Should().NotBe(0);
}
Using C#, .NET Core Test Explorer VSC extension, with xUnit and FluentAssertions.