本文整理汇总了C#中StreamingContext.Equals方法的典型用法代码示例。如果您正苦于以下问题:C# StreamingContext.Equals方法的具体用法?C# StreamingContext.Equals怎么用?C# StreamingContext.Equals使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类StreamingContext
的用法示例。
在下文中一共展示了StreamingContext.Equals方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: runTest
public virtual bool runTest()
{
Console.WriteLine(s_strTFPath + " " + s_strTFName + " , for " + s_strClassMethod + " , Source ver " + s_strDtTmVer);
int iCountErrors = 0;
int iCountTestcases = 0;
String strLoc = "Loc_000oo";
try {
do
{
StreamingContext sCon1, sCon2;
String str1;
strLoc = "Loc_100aa";
sCon2 = new StreamingContext(StreamingContextStates.CrossProcess, null);
iCountTestcases++;
if(sCon2.Equals(null))
{
iCountErrors++;
printerr("Error_100bb! StreamContext should not be null");
}
strLoc = "Loc_100cc";
sCon2 = new StreamingContext(StreamingContextStates.CrossProcess, null);
iCountTestcases++;
if(sCon2.Equals(new Object()))
{
iCountErrors++;
printerr("Error_100dd! StreamContext equals generic object????");
}
strLoc = "Loc_300aa";
sCon2 = new StreamingContext(StreamingContextStates.CrossProcess, null);
iCountTestcases++;
if(!sCon2.Equals(sCon2))
{
iCountErrors++;
printerr("Error_300bb! StreamingContext not equal to itself");
}
strLoc = "Loc_92387";
str1 = "Test";
sCon2 = new StreamingContext(StreamingContextStates.CrossMachine, str1);
sCon1 = new StreamingContext(StreamingContextStates.CrossMachine, str1);
iCountTestcases++;
if(!sCon2.Equals(sCon1))
{
iCountErrors++;
printerr("Error_300dd! StreamingContexts not equal");
}
strLoc = "Loc_400aa";
sCon1 = new StreamingContext(StreamingContextStates.CrossProcess, null);
sCon2 = new StreamingContext(StreamingContextStates.CrossMachine, null);
iCountTestcases++;
if(sCon1.Equals(sCon2))
{
iCountErrors++;
printerr("Error_400bb! StreamingContexts should not be equal");
}
strLoc = "Loc_500aa";
sCon1 = new StreamingContext(StreamingContextStates.File, 5);
sCon2 = new StreamingContext(StreamingContextStates.File, "5");
iCountTestcases++;
if(sCon1.Equals(sCon2))
{
iCountErrors++;
printerr("Error_500bb! StreamingContexts should not be equal");
}
} while (false);
} catch (Exception exc_general ) {
++iCountErrors;
Console.WriteLine (s_strTFAbbrev + " : Error Err_8888yyy! strLoc=="+ strLoc +", exc_general==\n"+exc_general.StackTrace);
}
if ( iCountErrors == 0 )
{
Console.WriteLine( "paSs. "+s_strTFPath +" "+s_strTFName+" ,iCountTestcases=="+iCountTestcases);
return true;
}
else
{
Console.WriteLine("FAiL! "+s_strTFPath+" "+s_strTFName+" ,iCountErrors=="+iCountErrors+" , BugNums?: "+s_strActiveBugNums );
return false;
}
}