You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
User should be able to GET a list, and GET a single item.
If the query string parameter of ?_include=employees is provided, then all employees in the department(s) should be included in the response.
If the query string parameters of ?_filter=budget&_gt=300000 is provided on a request for the list of departments, then any department whose budget is $300,000, or greater, should be in the response.
Testing Criteria
Write a testing class and test methods that validate the GET single, GET all, POST, and PUT operations work as expected.
The text was updated successfully, but these errors were encountered:
Feature Criteria
Verbs to be supported
?_include=employees
is provided, then all employees in the department(s) should be included in the response.?_filter=budget&_gt=300000
is provided on a request for the list of departments, then any department whose budget is $300,000, or greater, should be in the response.Testing Criteria
Write a testing class and test methods that validate the GET single, GET all, POST, and PUT operations work as expected.
The text was updated successfully, but these errors were encountered: