Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ namespace Microsoft.EntityFrameworkCore;

using VerifyCS = CSharpAnalyzerVerifier<InternalUsageDiagnosticAnalyzer>;

public class InternalUsageDiagnosticAnalyzerTests
//Issue #37106
internal class InternalUsageDiagnosticAnalyzerTests
{
[ConditionalFact]
public Task Invocation_on_type_in_internal_namespace()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ namespace Microsoft.EntityFrameworkCore;
using VerifyCS =
CSharpCodeFixVerifier<InterpolatedStringUsageInRawQueriesDiagnosticAnalyzer, InterpolatedStringUsageInRawQueriesCodeFixProvider>;

public class InterpolatedStringUsageInRawQueriesTests
//Issue #37106
internal class InterpolatedStringUsageInRawQueriesTests
{
private const string MyDbContext =
"""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ namespace Microsoft.EntityFrameworkCore;

using VerifyCS = CSharpAnalyzerVerifier<UninitializedDbSetDiagnosticSuppressor>;

public class UninitializedDbSetDiagnosticSuppressorTests
//Issue #37106
internal class UninitializedDbSetDiagnosticSuppressorTests
{
[ConditionalFact]
public Task DbSet_property_on_DbContext_is_suppressed()
Expand Down
Loading