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
@@ -1,13 +1,14 @@
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.

namespace Microsoft.EntityFrameworkCore;

using Microsoft.CodeAnalysis.Testing;

namespace Microsoft.EntityFrameworkCore;

using Verify = CSharpAnalyzerVerifier<StringsUsageInRawQueriesDiagnosticAnalyzer>;

public class StringConcatenationInRawQueriesAnalyzerTests
//Issue #37106
internal class StringConcatenationInRawQueriesAnalyzerTests
{
public static readonly TheoryData<string> DoNotReportData =
[
Expand Down
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.

namespace Microsoft.EntityFrameworkCore;

using Microsoft.CodeAnalysis.Testing;

namespace Microsoft.EntityFrameworkCore;

using Verify = CSharpCodeFixVerifier<StringsUsageInRawQueriesDiagnosticAnalyzer, InterpolatedStringUsageInRawQueriesCodeFixProvider>;

public class StringInterpolationInRawQueriesAnalyzerTests
//Issue #37106
internal class StringInterpolationInRawQueriesAnalyzerTests
{
public static readonly TheoryData<string> DoNotReportData =
[
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