rjmurillo/moq.analyzers

View on GitHub
src/Common/WellKnown/MoqKnownSymbolExtensions.cs

Summary

Maintainability
A
0 mins
Test Coverage
namespace Moq.Analyzers.Common.WellKnown;

internal static class MoqKnownSymbolExtensions
{
    public static bool IsMockReferenced(this MoqKnownSymbols mqs)
    {
        return mqs.Mock is not null || mqs.Mock1 is not null || mqs.MockRepository is not null;
    }
}