Summary

Class:OpenCoverTest1.Program
Assembly:OpenCoverTest1
File(s):C:\gitwork\OpenCoverTest\OpenCoverTest1\Program.cs
Covered lines:4
Uncovered lines:3
Coverable lines:7
Total lines:21
Line coverage:57.1%

Metrics

MethodCyclomatic complexity  NPath complexity  Sequence coverage  Branch coverage  
Main(...)2060100

File(s)

C:\gitwork\OpenCoverTest\OpenCoverTest1\Program.cs

#LineLine coverage
 1using System;
 2using System.Collections.Generic;
 3using System.Linq;
 4using System.Text;
 5using System.Threading.Tasks;
 6
 7namespace OpenCoverTest1
 8{
 9    class Program
 10    {
 11        static void Main(string[] args)
 112        {
 113            Console.WriteLine("Test");
 14
 315            foreach (var str in args)
 016            {
 017                Console.WriteLine(str);
 018            }
 119        }
 20    }
 21}

Methods/Properties

Main(System.String[])