I just started with unit testing using Nunit with my WebApi project.
I've developed one test case for my controller:
private readonly INewsBusinessLogic _newsBusinessLogic;
[Test] 
public async Task GetAllNews()
{
   // Arrange
   var controller = new NewsController(_newsBusinessLogic);
   controller.Configuration = new System.Web.Http.HttpConfiguration();
   controller.Request = new System.Net.Http.HttpRequestMessage();
    // Act
    var actionResult = await controller.Get(); 
   //assert
   Assert.IsNotNull(actionResult);
}
Api controller:
public class NewsController : ApiController 
{  
    private readonly INewsBusinessLogic _newsBusinessLogic;
    public NewsController(INewsBusinessLogic newsBusinessLogic)
    {
        _newsBusinessLogic = newsBusinessLogic;
    }
    public async Task<IHttpActionResult> Get()
    {
       return Ok(await _newsBusinessLogic.GetNewsUpdates());
    }
}
When I debug my test it gives me an error of NullReferenceException on Act , well I know very well that What is a NullReferenceException?. But cannot figure it out, why this is occurred and how to solve it.  
Side Note: I'm not using any ORM.
 
     
    