tags:

views:

61

answers:

3

I am writing tests to test Infopath Forms to open in Form Control, my test method is as

[TestMethod]
public void Validate_OpenInfopathInFormControl()
{
    Helper.OpenForm();
    //Other Code    
}

I have written Helper class as

public class Helper
{  
    public static void OpenForm()
    {
        //Code to Open Form
    }
}

But everytime I execute this code, this gives me:

Test method InfoPathTest.TestAPI.Validate_OpenInfopathInFormControl threw exception: System.TypeInitializationException: The type initializer for 'InfoPathTest.Helpers.Helper' threw an exception. ---> System.NullReferenceException: Object reference not set to an instance of an object..

When I try to debug, it fails when Helper class needs to be initialized. This is really eating my head, is there any solution for this?

Here is the complete helper class:

namespace InfoPathTest.Helpers
{
    public class Helper
    {
    //This is the form i need to OPEN
        private static MainForm f =  new MainForm();
        private static bool _isOpen = false;

        public static bool isOpen
        {
            set { _isOpen = value; }
            get { return _isOpen; }
        }

        public static void OpenForm()
        {
            try
            {
                f.Show();
            }
            catch (Exception ex)
            {
                throw ex;
            }
            _isOpen = true;

        }

        public static void CloseForm()
        {
            f.Hide();
        }
    }
}
A: 

You have an error in your static constructor (they are called Type Initializers). The inner exception is a NullReference exception. If you post your code we might be able to help you.

The rules determine when type initializers get run are complex, but it is guaranteed that they are run before you access the type in any way. It might not be directly obvious to you that you have a type initializer on your Helper class because you might use implicit initialization:

public class Helper
{   
    static int i = 10; // This assignment will end up in a type initializer
    static Helper()
    {
        // Explicit type initializer
        // The compiler will make sure both, implicit and explicit initializations are run
    }
}
Johannes Rudolph
i have updated above. There is no code in static constructor
chota
I knew this was coming :-) Started expanding before I saw that comment. Hope it clears things up.
Johannes Rudolph
+1  A: 

Your test calls Helper.OpenForm() and as you have no static constructor, the only thing I can see that would cause the exception to be thrown is:

private static MainForm f =  new MainForm();

Therefore something in the constructor for MainForm is likely throwing an exception. Put a breakpoint on the first line of the constructor for MainForm and step through until you see where the exception is thrown.

Alternatively you might find it easier to determine what the problem is, at least initially, by writing a new test you can step through that calls new MainForm() directly:

[TestMethod]
public void Validate_OpenInfopathInFormControl()
{
    var form = new MainForm();
}

Put a breakpoint on the only line of the test and step into the constructor to determine why it's throwing a NullReferenceException.

Rob
Thanks, yes you are right. There is a problem in constructor for MainForm and I am working in it!
chota
@chota, if I'm right and your happy that my answer has pointed you in the right direction, click on the outline of a tick just to the left of the question to mark this as the accepted answer =)
Rob
+1  A: 

The type initialiser, in this case, is where your static fields are initialised; That is, these two lines:

private static MainForm f =  new MainForm();
private static bool _isOpen = false;

The initialisation of a bool isn't going to cause any kind of exception, so it's highly likely that the source of the error is in the MainForm constructor.

Does the TypeInitializationException object contain any inner exceptions? If so, they should give you more info about the real cause of the error.

LukeH