Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Pro SQL Server Administration

Authors: Peter Carter

1st Edition

1484207106, 9781484207109

More Books

Students also viewed these Databases questions