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