#!/usr/bin/env python3

try:
    from iotest import run_assignment_tests
except ImportError:
    print("❌ Error: Could not find the 'iotest' module.")
    print("Please make sure 'iotest.py' is in the same directory as this test file and your solution program.")
    print("You can download 'iotest.py' from the github repository where POTD skeletons and test programs are found.")
    exit(1)

test_cases = [
    {
        "args": [],
        "stdin": [""],
        "expected_output": "What is 4 * 6 ?\n4 * 6 is 24\n"
    }
]

if __name__ == "__main__":
    run_assignment_tests("P01_quiz1.py", test_cases)
