本文整理匯總了C#中System.TestClass.TestMethod方法的典型用法代碼示例。如果您正苦於以下問題:C# TestClass.TestMethod方法的具體用法?C# TestClass.TestMethod怎麽用?C# TestClass.TestMethod使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類System.TestClass
的用法示例。
在下文中一共展示了TestClass.TestMethod方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。
示例1: CheckIfNull
public void CheckIfNull ()
{
var testClass = new TestClass ();
testClass.TestMethod (null);/*d42a19ec-98db-4166-a3b4-fc102ebd7905*/
testClass.TestMethod ("notNull");/*f633d197-cb92-418a-860c-4d8eadbe2342*/
Console.Write ("");/*6d50c480-1cd1-49a9-9758-05f65c07c037*/
}
示例2: ExtractMethodName_ReturnsMethodName_NoArgs
public void ExtractMethodName_ReturnsMethodName_NoArgs()
{
var model = new TestClass();
Assert.AreEqual( "TestMethod", ClassHelper.ExtractMethodName( () => model.TestMethod() ) );
}
示例3: ExtractClassType_ReturnsClassType_ForMethod
public void ExtractClassType_ReturnsClassType_ForMethod()
{
var model = new TestClass();
Assert.AreEqual( typeof( TestClass ), ClassHelper.ExtractClassType( () => model.TestMethod() ) );
}