Summary

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

Metrics

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

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
 715            foreach (var str in args)
 216            {
 217                Console.WriteLine(str);
 218            }
 119        }
 20    }
 21}

Methods/Properties

Main(System.String[])