Skip to content

Commit

Permalink
Suppress warning CA1825
Browse files Browse the repository at this point in the history
  • Loading branch information
claudiamurialdo committed Jan 29, 2024
1 parent d7444ec commit 4470468
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions dotnet/test/DotNetUnitTest/GlobalSuppressions.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
// This file is used by Code Analysis to maintain SuppressMessage
// attributes that are applied to this project.
// Project-level suppressions either have no target or are given
// a specific target and scoped to a namespace, type, member, etc.

using System.Diagnostics.CodeAnalysis;

[assembly: SuppressMessage("Performance", "CA1825:Avoid zero-length array allocations.", Justification = "<Pending>", Scope = "member", Target = "~M:UnitTesting.ExternalProviderTest.TestCopyMethod")]
[assembly: SuppressMessage("Performance", "CA1825:Avoid zero-length array allocations.", Justification = "<Pending>", Scope = "member", Target = "~M:UnitTesting.ExternalProviderTest.TestCopyPrivateMethod")]
[assembly: SuppressMessage("Performance", "CA1825:Avoid zero-length array allocations.", Justification = "<Pending>", Scope = "member", Target = "~M:UnitTesting.ExternalProviderTest.TestDeleteFile")]
[assembly: SuppressMessage("Performance", "CA1825:Avoid zero-length array allocations.", Justification = "<Pending>", Scope = "member", Target = "~M:UnitTesting.ExternalProviderTest.TestDeleteFilePrivate")]
[assembly: SuppressMessage("Performance", "CA1825:Avoid zero-length array allocations.", Justification = "<Pending>", Scope = "member", Target = "~M:UnitTesting.ExternalProviderTest.TestDirectoryExists")]
[assembly: SuppressMessage("Performance", "CA1825:Avoid zero-length array allocations.", Justification = "<Pending>", Scope = "member", Target = "~M:UnitTesting.ExternalProviderTest.TestDirectoryNotExists")]
[assembly: SuppressMessage("Performance", "CA1825:Avoid zero-length array allocations.", Justification = "<Pending>", Scope = "member", Target = "~M:UnitTesting.ExternalProviderTest.TestDownloadMethod")]
[assembly: SuppressMessage("Performance", "CA1825:Avoid zero-length array allocations.", Justification = "<Pending>", Scope = "member", Target = "~M:UnitTesting.ExternalProviderTest.TestEmptyFolder")]
[assembly: SuppressMessage("Performance", "CA1825:Avoid zero-length array allocations.", Justification = "<Pending>", Scope = "member", Target = "~M:UnitTesting.ExternalProviderTest.TestFileExists")]
[assembly: SuppressMessage("Performance", "CA1825:Avoid zero-length array allocations.", Justification = "<Pending>", Scope = "member", Target = "~M:UnitTesting.ExternalProviderTest.TestFileNotExists")]
[assembly: SuppressMessage("Performance", "CA1825:Avoid zero-length array allocations.", Justification = "<Pending>", Scope = "member", Target = "~M:UnitTesting.ExternalProviderTest.TestGetMethod")]
[assembly: SuppressMessage("Performance", "CA1825:Avoid zero-length array allocations.", Justification = "<Pending>", Scope = "member", Target = "~M:UnitTesting.ExternalProviderTest.TestGetObjectName")]
[assembly: SuppressMessage("Performance", "CA1825:Avoid zero-length array allocations.", Justification = "<Pending>", Scope = "member", Target = "~M:UnitTesting.ExternalProviderTest.TestMultimediaUpload")]
[assembly: SuppressMessage("Performance", "CA1825:Avoid zero-length array allocations.", Justification = "<Pending>", Scope = "member", Target = "~M:UnitTesting.ExternalProviderTest.TestUploadAndCopyDefault")]
[assembly: SuppressMessage("Performance", "CA1825:Avoid zero-length array allocations.", Justification = "<Pending>", Scope = "member", Target = "~M:UnitTesting.ExternalProviderTest.TestUploadAndCopyMixed")]
[assembly: SuppressMessage("Performance", "CA1825:Avoid zero-length array allocations.", Justification = "<Pending>", Scope = "member", Target = "~M:UnitTesting.ExternalProviderTest.TestUploadAndCopyPrivate")]
[assembly: SuppressMessage("Performance", "CA1825:Avoid zero-length array allocations.", Justification = "<Pending>", Scope = "member", Target = "~M:UnitTesting.ExternalProviderTest.TestUploadAndCopyPrivateToPublic")]
[assembly: SuppressMessage("Performance", "CA1825:Avoid zero-length array allocations.", Justification = "<Pending>", Scope = "member", Target = "~M:UnitTesting.ExternalProviderTest.TestUploadAndCopyPublic")]
[assembly: SuppressMessage("Performance", "CA1825:Avoid zero-length array allocations.", Justification = "<Pending>", Scope = "member", Target = "~M:UnitTesting.ExternalProviderTest.TestUploadAndCopyPublicToPrivate")]
[assembly: SuppressMessage("Performance", "CA1825:Avoid zero-length array allocations.", Justification = "<Pending>", Scope = "member", Target = "~M:UnitTesting.ExternalProviderTest.TestUploadDefaultAttributeMethod")]
[assembly: SuppressMessage("Performance", "CA1825:Avoid zero-length array allocations.", Justification = "<Pending>", Scope = "member", Target = "~M:UnitTesting.ExternalProviderTest.TestUploadDefaultMethod")]
[assembly: SuppressMessage("Performance", "CA1825:Avoid zero-length array allocations.", Justification = "<Pending>", Scope = "member", Target = "~M:UnitTesting.ExternalProviderTest.TestUploadPrivateMethod")]
[assembly: SuppressMessage("Performance", "CA1825:Avoid zero-length array allocations.", Justification = "<Pending>", Scope = "member", Target = "~M:UnitTesting.ExternalProviderTest.TestUploadPrivateSubfolderMethod")]
[assembly: SuppressMessage("Performance", "CA1825:Avoid zero-length array allocations.", Justification = "<Pending>", Scope = "member", Target = "~M:UnitTesting.ExternalProviderTest.TestUploadPublicMethod")]

0 comments on commit 4470468

Please sign in to comment.