Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Create test cases easily for C CPP #727

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Commits on Jun 12, 2020

  1. Create test cases easily for C CPP

    While creating a C or CPP standard function based question,
    the standard test case will simply be the assert function of CPP.
    This replaces the writing of complete C code and print inputs and
    expected output for the user code evaluation.
    Now the creator simply needs to write the assert function.
    Example: For add function (adding two numbers), the test case will be:
    
    assert(add(1, 2) == 3)
    prathamesh920 committed Jun 12, 2020
    Configuration menu
    Copy the full SHA
    ac0c6bc View commit details
    Browse the repository at this point in the history