Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Testing and Quality Assurance
00:00
5 left

Testing and Quality Assurance

MediumPython

Problem

How do you approach testing and quality assurance in your code?

Implement evaluate_test_suite(test_cases) to evaluate deterministic test results. Each test case is a dictionary with a unique string id, an expected value, and an actual value; return counts for passed and failed tests plus failing IDs in input order. Treat values as equal using Python equality.

Constraints

  • 0 <= len(test_cases) <= 10^5
  • Each test case contains a unique string id, expected value, and actual value
  • Values are directly comparable with Python equality
  • Return failure IDs in their original input order

Function Signature

def evaluate_test_suite(test_cases):
Interviewer

Your question is Testing and Quality Assurance. Start with the requirements in the Question tab.

Run and submit as often as you like. When you're ready, talk me through your approach or go straight to the code.

You need to log in / sign up to run or submit.
CodePython 3
You need to log in / sign up to run or submit.Ln 2
Run your code to see test output here.