diff --git a/tests/Moq.Analyzers.Test/ConstructorArgumentsShouldMatchAnalyzerTests.Expressions.cs b/tests/Moq.Analyzers.Test/ConstructorArgumentsShouldMatchAnalyzerTests.Expressions.cs index 1337565..d6d3b94 100644 --- a/tests/Moq.Analyzers.Test/ConstructorArgumentsShouldMatchAnalyzerTests.Expressions.cs +++ b/tests/Moq.Analyzers.Test/ConstructorArgumentsShouldMatchAnalyzerTests.Expressions.cs @@ -9,6 +9,9 @@ public static IEnumerable ExpressionTestData() return new object[][] { ["""_ = new Mock(() => new Calculator(), MockBehavior.Loose);"""], + ["""_ = new Mock(() => new Calculator(), MockBehavior.Strict);"""], + ["""_ = new Mock(() => new Calculator(), MockBehavior.Default);"""], + ["""_ = new Mock(() => new Calculator());"""], }.WithNamespaces().WithMoqReferenceAssemblyGroups(); }