6 references to warnings
Microsoft.DotNet.ApiCompat.IntegrationTests (6)
SuppressibleTestLog.cs (3)
30warnings.Add($"{code} {message}"); 34public void LogWarning(string message) => warnings.Add(message); 35public void LogWarning(string code, string message) => warnings.Add($"{code} {message}");
Task\ValidatePackageTargetIntegrationTests.cs (3)
289Assert.DoesNotContain(log.warnings, e => e.Contains("CP1003")); 291Assert.Contains(log.warnings, e => e.Contains("CP1003")); 313Assert.DoesNotContain(log.warnings, e => e.Contains("CP1003"));