Skip to main content

my own CS111 grader.

Project description

Test Results and Failed Cases

This Python script provides functions to display test results and record failed test cases. It includes two functions:

  1. print_test_results: This function prints the number of test cases passed and the list of failed test cases. If there are more than 10 failed cases, it displays detailed information for each failed case.

  2. write_failed_cases_to_file: This function writes the list of failed cases to a file specified by the user. By default, it creates a file named failed_cases.txt.

Usage

    # Import the functions
from src.mygrader import print_test_results, write_failed_cases_to_file

# Example usage
# Assuming you have a list of failed test cases named 'failed_cases'
num_passed = 90
num_failed = 10
failed_cases = [
    ("input_1", "expected_1", "got_1"),
    ("input_2", "expected_2", "got_2"),
    ("input_3", "expected_3", "got_3"),
    ("input_4", "expected_4", "got_4"),
    ("input_5", "expected_5", "got_5"),
]

# Call the function to print the results and write failed cases to a file
print_test_results(num_passed, num_failed, failed_cases)

write_failed_cases_to_file(failed_cases, "custom_failed_cases.txt")

Function Descriptions

print_test_results(num_passed, num_failed, failed_cases)

Prints the test results and returns the list of failed cases.

Parameters:

  • num_passed (int): Number of test cases passed.
  • num_failed (int): Number of test cases failed.
  • failed_cases (list): List of tuples containing failed test cases.

Returns:

A list of dictionaries containing failed test cases.

write_failed_cases_to_file(failed_cases, filename="failed_cases.txt")

Writes the list of failed cases to a file.

Parameters:

  • failed_cases (list): List of dictionaries containing failed test cases.
  • filename (str, optional): The name of the output file. Defaults to "failed_cases.txt".

Contributing

Contributions to this project are welcome! If you find any issues or have suggestions for improvements, feel free to open an issue or submit a pull request.

License

This project is licensed under the MIT License - see the LICENSE file for details.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

mygrader-0.1.42.tar.gz (3.0 kB view details)

Uploaded Source

File details

Details for the file mygrader-0.1.42.tar.gz.

File metadata

  • Download URL: mygrader-0.1.42.tar.gz
  • Upload date:
  • Size: 3.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.4

File hashes

Hashes for mygrader-0.1.42.tar.gz
Algorithm Hash digest
SHA256 0aaf97984c5470f523ccbdcec2b3f71a51aeb61840537e2879f828d560c9fb39
MD5 b2914cbb674bcf952d6a8e5be50cad06
BLAKE2b-256 12c2f7a6b186a22deca30bb19a5ebde8f0ef203f4070b8356866455dccc96037

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page