up vote 1 down vote favorite
share [g+] share [fb]

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));
link|improve this question

64% accept rate
feedback

6 Answers

up vote 4 down vote accepted

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|improve this answer
feedback

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|improve this answer
+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
feedback

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|improve this answer
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
feedback

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|improve this answer
feedback

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

link|improve this answer
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
feedback

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|improve this answer
feedback

Your Answer

 
or
required, but never shown

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