Warning: file_get_contents(/data/phpspider/zhask/data//catemap/1/visual-studio-2008/2.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181

Warning: file_get_contents(/data/phpspider/zhask/data//catemap/8/design-patterns/2.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
C# VS2008单元测试提示意义_C#_Visual Studio 2008 - Fatal编程技术网

C# VS2008单元测试提示意义

C# VS2008单元测试提示意义,c#,visual-studio-2008,C#,Visual Studio 2008,我在vs2008中进行单元测试,现在每次运行它都会显示 Executing the current test run will produce a new test run result, which will exceed the limit of 25 that is currently specified. If you continue, older test run results and their associated deployments will be delet

我在vs2008中进行单元测试,现在每次运行它都会显示

    Executing the current test run will produce a new test run result, which will exceed
 the limit of 25 that is currently specified. If you continue, older test run results and
 their associated deployments will be deleted from the hard drive...

这意味着什么?如何清除旧的测试运行结果?为什么这条消息很重要?

这条消息基本上意味着单元测试项目已经保存/记录了以前运行的单元测试的25个(您的阈值)结果

通过继续,它将从这25个选项中删除一个,以包含您下次跑步的结果

您可以在“工具->选项”对话框中修改“警报”:

您可以在此处修改此号码:


是的,您可以在选项中设置“始终删除旧跑步”,或手动。。。接下来的屏幕截图。旧的测试运行对我有什么好处?我如何利用它们?@Rod:老实说,最近的测试运行的价值取决于你。大型开发团队和测试/质量保证团队可能更重视它们。每个人都有自己的,真的。