[转]Creating a Data Collector Set with the PLA API
摘要:http://www.devx.com/dotnet/Article/35157/0/page/3Creating a data collector set programmatically takes only a few lines of code when you have an appropriately configured XML template already available. You can use the template you just created as a base; modify the path variable in the code below to
阅读全文
posted @
2012-08-30 16:39
一根葛根
阅读(369)
推荐(0)
confusion
摘要:The agents are ready but not running...troubleshooting...Solution:In the localtetsrun.testconfig, we need to change the role from “local execution”to “remote execution”.
阅读全文
posted @
2012-08-27 17:32
一根葛根
阅读(150)
推荐(0)
[转]Troubleshooting Guide for Visual Studio Test Controller and Agent
摘要:http://social.msdn.microsoft.com/Forums/en-US/vststest/thread/df043823-ffcf-46a4-9e47-1c4b8854ca13Troubleshooting Guide for Visual Studio Test Controller and AgentThis guide is to help troubleshoot connection issues between Visual Studio Test Controller and Agent as well as remote test execution iss
阅读全文
posted @
2012-08-27 14:33
一根葛根
阅读(848)
推荐(0)
一个关于boxing和unboxing的demo
摘要:demo 来自 CLR via C#(第三版)View Code 1 static void Main(string[] args) 2 { 3 Point p = new Point(1, 1); 4 Console.WriteLine(p); 5 6 p.Change(2, 2); 7 Console.WriteLine(p); 8 9 Object o = p;10 Console.WriteLine(o);11 12 ...
阅读全文
posted @
2012-08-20 10:40
一根葛根
阅读(259)
推荐(0)