Skip to content

Commit

Permalink
excluding code coverage where unit test coverage is not required #2
Browse files Browse the repository at this point in the history
  • Loading branch information
skaarthik committed Dec 21, 2015
1 parent b8fac11 commit cfd3334
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
using System;
using System.Collections.Concurrent;
using System.Collections.Generic;
using System.Diagnostics.CodeAnalysis;
using System.Net;
using System.Net.Sockets;
using System.Text;
Expand All @@ -16,6 +17,7 @@ namespace Microsoft.Spark.CSharp.Interop.Ipc
/// throught a concourrent socket connection queue (lightweight synchronisation mechanism)
/// supporting async JVM calls like StreamingContext.AwaitTermination()
/// </summary>
[ExcludeFromCodeCoverage] //IPC calls to JVM validated using validation-enabled samples - unit test coverage not reqiured
internal class JvmBridge : IJvmBridge
{
private int portNumber;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@

using System;
using System.Collections.Generic;
using System.Diagnostics.CodeAnalysis;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
Expand Down

0 comments on commit cfd3334

Please sign in to comment.