the repository is a prop of an Mvc controller, i'm trying to write a test method to check this controller, but i get an error in the container call...
i'm new in mvc and testing.. so i dont know where to start how can i do this?
this is how the test looks like:
public void SomeTest()
{
var controller= new SomeController();
var result = SomeController.Index();
Assert.IsNotNull(result);
}
The error i recive when i run the test
an exception of type System.NullReferenceException
occurred in SomeContext.dll but was not handled in user code
Has your repository been initialized?
In your controller:
In your test class:
or if you are using dependency injection, with Ninject property injection you can try using Moq to inject the class:
and the test class with moq: