vote up 1 vote down star

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));
flag

39% accept rate

6 Answers

vote up 4 vote down check

The only thing that I can see is making sure you get out the handle that you put in via your constructor. I know that it's obvious that you implemented it this way, but a test would assure you that it stays this way. I would test this only because you are injecting it via the constructor. If it was just { get; set; } I probably wouldn't.

 [TestMethod]
 public void ConstructorTest()
 {
      IntPtr handle = new IntPtr(100);
      MapinfoWindowHandle winHandle = new MapinfoWindowHandle(handle);
      Assert.AreEqual( handle, ((IWin32Window)winHandle).Handle );
 }
link|flag
vote up 0 vote down

Yes write the test. If later someone changes the code or adds some new code to it, you have at least one test to make sure the class works as it was intended to.

link|flag
vote up 0 vote down

Yes. If a class is worth writing, it is worth testing

link|flag
Absolutism never served anyone well. – Chris Dec 9 '08 at 7:33
You do realize the irony of that statement don't you? – JaredPar Dec 9 '08 at 7:35
The irony was intended to drive home the point. ;-) – Chris Dec 9 '08 at 7:40
In the future you should add the <irony> tag :) – JaredPar Dec 9 '08 at 7:46
vote up 2 vote down

I'd certainly test for trying to construct it with a NULL (0) or INVALID_HANDLE_VALUE (-1) and probably have it throw on either/both if appropriate (it's unclear if it's ok to initialize the class with an IntPtr.Zero, but it's almost certain that a -1 would be invalid.

link|flag
+1 Make sure you cannot set the IntPtr to an illegal value – Bent AndrĂ© Solheim Dec 9 '08 at 5:47
+1 good points, had forgotten about that – Robert Gould Dec 9 '08 at 6:13
vote up 0 vote down

GUI code is notoriously hard to unit test. I've never found it to be too useful in my own applications. Just keep your business logic out of your GUI so you can easily test that. I generally test the gui code with with either manual or automated integration/acceptance tests. It's hard to write a test to verify that something "looks right."

link|flag
vote up 0 vote down

The pragmatist in me says no, because the class does "nothing", so there is "nothing" to test. But sure you could still test it, just for documentation purposes, and as a contract for future developers.

link|flag
But the class does have one contract that can be tested. The constructor parameter must be the resulting property. Trivial but testable. – JaredPar Dec 9 '08 at 6:17

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.