You are on page 1of 2

1 Assignment 5 score - 21f3001500

Assignment 5 Evaluation
The private test cases for assignment 5 evaluated various
parts of the problem statement against the given data input.
Details of what the tests were looking for are given below,
along with the weightage, your score, and the final weighted
average score.

Your weighted average score for this assignment is:


55.56

Note that there could be multiple reasons why your code does
not pass the tests. In most cases, you should be able to run
the main tests yourself and see where it went wrong. One
possible source of failing tests is that you have used import
statements for modules that are not available on the
evaluation server. In such cases, you will generally lose
marks.

CRUD endpoints check

All the endpoints used in the application should return 200


response code in case of success.

SNo Test Case Name Weightage Status

Does the endpoint 'POST /student/


1 1
create' return 200 response code?

Does the endpoint 'GET /' return 200


2 1
response code?

Does the endpoint 'POST /student/


3 <int:student_id>/update' return 200 1
response code?

https://onlinedegree.iitm.ac.in/
2 Assignment 5 score - 21f3001500
Does the endpoint 'GET /student/
4 <int:student_id>/delete' return 200 1
response code?

Database checks

All the endpoints should make appropriate changes in the


database file.

SNo Test Case Name Weightage Status

Does the endpoint 'POST /student/


1 create' create student resource in the 1
database?

Does the endpoint 'GET /' fetch all


2 1
students from the database?

Does the endpoint 'POST /student/


3 <int:student_id>/update' make changes 1
in the database?

Enrollment checks

The create and update endpoints should make required changes


in the database.

SNo Test Case Name Weightage Status

Does the endpoint 'GET /student/


1 <int:student_id>' return 200 response 1
code?

Does the enrollments table data match


2 1
expected output?

https://onlinedegree.iitm.ac.in/

You might also like