autp2_demo.zip
Lib
bin
Debug
Lib.dll
Lib.pdb
KALib.csproj.user
obj
Debug
KALib.projdata
Lib.dll
Lib.pdb
Lib.projdata
temp
TempPE
UnitTest.suo
UnitTest
bin
Debug
UnitTest.dll
UnitTest.pdb
obj
Debug
temp
TempPE
UnitTest.dll
UnitTest.pdb
UnitTest.projdata
UnitTest.csproj.user
UTCore
bin
Debug
Lib.dll
Lib.pdb
UnitTest.dll
UnitTest.pdb
UTCore.dll
UTCore.pdb
obj
Debug
temp
TempPE
UTCore.dll
UTCore.pdb
UTCore.projdata
UTCore.csproj.user
UTExample
bin
Debug
UnitTest.dll
UnitTest.pdb
UTExample.dll
UTExample.pdb
obj
Debug
temp
TempPE
UTExample.dll
UTExample.pdb
UTExample.projdata
Stubs
UTExample.csproj.user
UTWinForm
App.ico
bin
Debug
Fail.ico
Ignore.ico
ka.ico
Lib.dll
Lib.pdb
Pass.ico
UnitTest.dll
UnitTest.pdb
Untested.ico
UTCore.dll
UTCore.pdb
UTExample.dll
UTExample.pdb
UTWinForm.exe
UTWinForm.pdb
obj
Debug
temp
TempPE
UTWinForm.exe
UTWinForm.Form1.resources
UTWinForm.pdb
UTWinForm.projdata
UTWinForm.csproj.user
|
using System;
using System.Reflection;
using KALib;
namespace UTCore
{
public class MethodItem
{
private Assembly assembly;
private string namespaceName;
private string className;
private string methodName;
private object[] attributes;
private MethodInfo methodInfo;
private delegate void UnitTestDelegate();
// test options
private bool ignore=false;
UnitTest.ExpectedExceptionAttribute eea=null;
public object[] Attributes
{
get
{
return attributes;
}
}
public bool Ignore
{
get
{
return ignore;
}
set
{
ignore=value;
}
}
public UnitTest.ExpectedExceptionAttribute ExpectedException
{
get
{
return eea;
}
set
{
eea=value;
}
}
public override string ToString()
{
return methodName;
}
public MethodItem(Assembly assembly, string namespaceName, string className, string methodName, MethodInfo methodInfo)
{
this.assembly=assembly;
this.namespaceName=namespaceName;
this.className=className;
this.methodName=methodName;
this.methodInfo=methodInfo;
attributes=methodInfo.GetCustomAttributes(true);
}
public void Invoke(object classInstance)
{
// Delegates requires that methods have a specific signature and are public.
// Delegates are faster than "methodInfo.Invoke".
Type utdType=typeof(UnitTestDelegate);
UnitTestDelegate utd=Delegate.CreateDelegate(utdType, classInstance, methodName) as UnitTestDelegate;
try
{
utd();
}
catch(Exception e)
{
throw(e);
}
// The invoke function allows us to call functions with different parameter lists, and ones that are not public.
// However, this changes how we handle exceptions
// try
// {
// methodInfo.Invoke(classInstance, BindingFlags.Public | BindingFlags.NonPublic | BindingFlags.InvokeMethod | BindingFlags.Static, null, null, null);
// }
// catch(Exception e)
// {
// throw(e.InnerException);
// }
}
}
}
|
By viewing downloads associated with this article you agree to the Terms of use and the article's licence.
If a file you wish to view isn't highlighted, and is a text file (not binary), please
let us know and we'll add colourisation support for it.
This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.
A list of licenses authors might use can be found here