Question: how could I write a unit test for the following : Using C# - MStest public class API_FIRM_LINKController : ODataController private Entities db =new Entities();
how could I write a unit test for the following : Using C# - MStest
public class API_FIRM_LINKController : ODataController
private Entities db =new Entities();
{
public IQueryable
{
return db.API_FIRM_LINK;
}
public SingleResult
{
return SingleResult.Create(db.API_FIRM_LINK.Where(aPI_FIRM_LINK => aPI_FIRM_LINK.ApiFirmLInkId == key ));
}
Test files :
public class API_FIRM_LINKControllerTests
{
public void GetAPI_FIRM_LINKTest()
//arrange
//act
//assert
public void GetAPI_FIRM_LINKTest1()
{
//arrange
//act
//assert
}
If someone could assist me , it might be simple
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
