当前位置: 首页>>代码示例>>C#>>正文


C# Worker.Test045方法代码示例

本文整理汇总了C#中Worker.Test045方法的典型用法代码示例。如果您正苦于以下问题:C# Worker.Test045方法的具体用法?C# Worker.Test045怎么用?C# Worker.Test045使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Worker的用法示例。


在下文中一共展示了Worker.Test045方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: Run


//.........这里部分代码省略.........
						}
						if( args[i] == "-026"  )
						{
							w.Test026() ; 
							w.Test026b() ; 
						}
						if( args[i] == "-027" || TestAll )
						{
							w.Test027() ; 
						}
						if( args[i] == "-028" || TestAll )
						{
							w.Test028() ; 
						}
						if( args[i] == "-029" || TestAll )
						{
							w.Test029(StoreLocation.CurrentUser);
							w.SetLm() ; 
							w.Test029(StoreLocation.LocalMachine);
							w.Reset() ; 
						}
						if( args[i] == "-031" || TestAll )
						{
							w.Test031(StoreLocation.CurrentUser,false) ; 
							w.Test031(StoreLocation.CurrentUser,true);
							w.SetLm() ; 
							w.Test031(StoreLocation.LocalMachine,false) ; 
							w.Test031(StoreLocation.LocalMachine,true) ; 
							w.Reset() ; 
						}
						if( args[i] == "-032" || TestAll )
						{
							w.Test032() ; 
						}
						if( args[i] == "-033" || TestAll )
						{
							w.Test033() ; 
						}
						if( args[i] == "-034" || TestAll )
						{
							w.Test034() ; 
						}
						if( args[i] == "-035" || TestAll )
						{
	//						w.Test035("2.5.29.10") ; 
	//						w.Test035(null) ; 
							w.Test035() ; 
						}
						if( args[i] == "-036" || TestAll )
						{
							w.Test036() ; 
						}
						if( args[i] == "-037" || TestAll )
						{
							w.Test037() ; 
						}
						if( args[i] == "-040" || TestAll )
						{
							w.Test040() ; 
						}
						if( args[i] == "-041" || TestAll )
						{
							w.Test041() ; 
						}
						if( args[i] == "-042" || TestAll )
						{
							w.Test042() ; 
						}
						if( args[i] == "-043"  )
						{
						//	w.Test043(true) ; 
							w.Test043(false) ; 
						}
						if( args[i] == "-045" || TestAll )
						{
							w.Test045() ; 
						}
						if( args[i] == "-046" || TestAll )
						{
							w.Test046() ; 
						}
						if( args[i] == "-047" || TestAll )
						{
							w.Test047() ; 
						}

						if( TestAll )
							break ;
					}
				}
				}
			catch( Exception e )
				{
				Console.WriteLine( "\n\n\n**********Run caught an exception**********\n\n\n" ) ; 
				Console.WriteLine( e ) ; 
				failed = true ; 
				}

			w.DumpResults(failed) ; 
		}
开发者ID:aura1213,项目名称:netmf-interpreter,代码行数:101,代码来源:x509tester.cs


注:本文中的Worker.Test045方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。