I know this maybe a very basic question but I'm having a bit of a mind blank at the moment. Should I be unit testing this class.
public class MapinfoWindowHandle : IWin32Window
{
IntPtr handle;
public MapinfoWindowHandle(IntPtr mapinfoHandle)
{
this.handle = mapinfoHandle;
}
#region IWin32Window Members
IntPtr IWin32Window.Handle
{
get { return this.handle; }
}
#endregion
}
If I should be what should I be testing for?
I use it like this:
IntPtr handle = new IntPtr(100);
myform.show(new MapinfoWindowHandle(handle));