Completion\CompletionProviders\OperatorCompletionProviderTests.cs (13)
73=> VerifyNoItemsExistAsync("""
121: new Func<string, Task>(markup => VerifyNoItemsExistAsync(markup));
141=> VerifyNoItemsExistAsync("""
158=> VerifyNoItemsExistAsync("""
349=> VerifyNoItemsExistAsync("""
633await VerifyNoItemsExistAsync(string.Format(template, $"public static object operator {operatorSign}(S _)"));
634await VerifyNoItemsExistAsync(string.Format(template, $"public static S operator {operatorSign}(S a, S b, S c)"));
659await VerifyNoItemsExistAsync(string.Format(template, $"public static object operator {operatorSign}(S a, S b)"));
660await VerifyNoItemsExistAsync(string.Format(template, $"public static S operator {operatorSign}(S a, object b)"));
661await VerifyNoItemsExistAsync(string.Format(template, $"public static S operator {operatorSign}(S a, S b, S c)"));
684await VerifyNoItemsExistAsync(string.Format(template, $"public static int operator {operatorSign}(S a, S b)"));
685await VerifyNoItemsExistAsync(string.Format(template, $"public static bool operator {operatorSign}(S a, S b, S c)"));
686await VerifyNoItemsExistAsync(string.Format(template, $"public static bool operator {operatorSign}(S a, object b)"));