.NET: Fix code coverage - exclude remote-only class
Project: http://git-wip-us.apache.org/repos/asf/ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/737033ca Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/737033ca Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/737033ca Branch: refs/heads/ignite-3478 Commit: 737033ca69d94c0b7fbc5554e06a461489fa54ea Parents: 21cc7a4 Author: Pavel Tupitsyn <[email protected]> Authored: Mon Sep 25 19:09:29 2017 +0300 Committer: Pavel Tupitsyn <[email protected]> Committed: Mon Sep 25 19:09:29 2017 +0300 ---------------------------------------------------------------------- .../dotnet/Apache.Ignite.Core.Tests.TestDll/TestExtensions.cs | 2 ++ 1 file changed, 2 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ignite/blob/737033ca/modules/platforms/dotnet/Apache.Ignite.Core.Tests.TestDll/TestExtensions.cs ---------------------------------------------------------------------- diff --git a/modules/platforms/dotnet/Apache.Ignite.Core.Tests.TestDll/TestExtensions.cs b/modules/platforms/dotnet/Apache.Ignite.Core.Tests.TestDll/TestExtensions.cs index 65a1484..f67295b 100644 --- a/modules/platforms/dotnet/Apache.Ignite.Core.Tests.TestDll/TestExtensions.cs +++ b/modules/platforms/dotnet/Apache.Ignite.Core.Tests.TestDll/TestExtensions.cs @@ -17,11 +17,13 @@ namespace Apache.Ignite.Core.Tests.TestDll { + using System.Diagnostics.CodeAnalysis; using System.Linq; /// <summary> /// Extension methods for tests. /// </summary> + [ExcludeFromCodeCoverage] public static class TestExtensions { /// <summary>
