NCover 初次使用結果
參考如下文章,獲知使用方式。
http://blog.csdn.net/haibo1228/article/details/4291890
NCover 版本NCover-1.5.8
下載位址:http://downloads.ncover.com/NCover-1.5.8.
------------------------------------------------- -------
測試程式碼如下:
using System; using System.Collections.Generic; using System.Text; namespace NCover_HelloWorld { class Program { public static String getData_a() { return "00001"; } public static String getData() { return "Hello World !"; } static void Main(string[] args) { Console.WriteLine(args.Length); if (args.Length > 0 && args[0].ToLower() -- "a") { Console.WriteLine(getData_a()); } else { Console.WriteLine(getData()); } } } }
---------------------------- ----------------------------
測試結果如下:
C:Program FilesNCover>NCover.Console "NCover_HelloWorld.exe" a
NCover.Console v1.5.8 - Code Coverage Analysis for .NET - http://ncover.org
Copyright (c) 2004-2006 Peter Waldschmidt
Command: NCover_HelloWorld.exe
Assemblies:
Coverage Xml: Coverage.Xml
Coverage Log: Coverage.Log
Waiting for profiled application to connect...Connected
Con******guring Profiler... ***** Program Output *******************
1
00001
***************** End Program Output *****************
C:Program FilesNCover>NCover.Console "NCover_HelloWorld.exe"
NCover.Console v1.5.8 - Code Coverage Analysis for .NET - http: //ncover.org
Copyright (c) 2004-2006 Peter Waldschmidt
Command: NCover_HelloWorld.exe
Command Args:
Working Directover:
age.Log
Waiting for profiled application to connect...Connected
Configuring Profiler...
******************* Program Output ************ *******
0
Hello World !
***************** End Program Output **************** *
------------------------------------------- ---------
這裡運行了兩次,每運行完一次後,打開Coverage.Xml 可查看到代碼覆蓋情況。
----------------------------------------------- ---------
有個問題,如果程式更複雜,如何測覆蓋率?
------------------------------------------------ --------
另,只找到1.0.1 的原始碼
http://nchc.dl.sourceforge.net/project/ncover/ncover/ncover-1.0%20RC2/ncover-1.0.1.zip