Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Testing Complex Business Logic

HardPython00:00
Practice interviewer
In session
5 left
00:00

Your question is Testing Complex Business Logic. Start with the requirements on the right.

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.

Problem

Write robust unit and integration tests for a complex business logic component.

Implement a deterministic test harness that receives named component fixtures and test cases. Each case must run against the unit component or integration runner, compare the result with the expected value, and record assertion failures or raised exceptions.

Signature: def run_business_logic_tests(component, integration_runner, cases):

component and integration_runner are fixture names such as double or raises. Each case contains input, expected, and optional boolean integration. Return counts for passed and failed cases plus ordered failure details.

Constraints

  • 0 <= len(cases) <= 10^4
  • Each case contains input and expected fields
  • The integration field, when present, is boolean
  • Fixture names are deterministic strings such as double, increment, and raises
  • Process every case and preserve failure order

Function Signature

def run_business_logic_tests(component, integration_runner, cases):
Your solutionPython 3
You need to log in / sign up to run or submit.
Run your code to see test output