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