Completion\CompletionProviders\OperatorCompletionProviderTests.cs (13)
76await VerifyNoItemsExistAsync(@"
127: new Func<string, Task>(markup => VerifyNoItemsExistAsync(markup));
148await VerifyNoItemsExistAsync(@"
167await VerifyNoItemsExistAsync(@"
311await VerifyNoItemsExistAsync(@"
605await VerifyNoItemsExistAsync(string.Format(template, $"public static object operator {operatorSign}(S _)"));
606await VerifyNoItemsExistAsync(string.Format(template, $"public static S operator {operatorSign}(S a, S b, S c)"));
630await VerifyNoItemsExistAsync(string.Format(template, $"public static object operator {operatorSign}(S a, S b)"));
631await VerifyNoItemsExistAsync(string.Format(template, $"public static S operator {operatorSign}(S a, object b)"));
632await VerifyNoItemsExistAsync(string.Format(template, $"public static S operator {operatorSign}(S a, S b, S c)"));
654await VerifyNoItemsExistAsync(string.Format(template, $"public static int operator {operatorSign}(S a, S b)"));
655await VerifyNoItemsExistAsync(string.Format(template, $"public static bool operator {operatorSign}(S a, S b, S c)"));
656await VerifyNoItemsExistAsync(string.Format(template, $"public static bool operator {operatorSign}(S a, object b)"));