Question: how could I write a unit test for the following : Using C# - MStest - How could i check if it returns correctly public

how could I write a unit test for the following :

Using C# - MStest - How could i check if it returns correctly

public class API_FIRM_LINKController : ODataController

private Entities db =new Entities(); {

public IQueryable GetAPI_FIRM_LINK() {

return db.API_FIRM_LINK;

}

public SingleResult GetAPI_FIRM_LINK([FromODataUri] Guid key) {

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

//ac

t //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

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!