We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
test_
check_
Taking @stephenrkell's feedback in #5 (review)
E.g. rename
int add_large(void) { // x = 5l x = x + 4294967290l; // this constant is 2^32 - 6 return (x == 4294967295l); }
to test_add_large so it's clear the function doesn't just add numbers, it also verifies the result.
test_add_large
In general, use test_ prefix for standalone tests, check_ to validate input from elsewhere
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Taking @stephenrkell's feedback in #5 (review)
E.g. rename
to
test_add_large
so it's clear the function doesn't just add numbers, it also verifies the result.In general, use
test_
prefix for standalone tests,check_
to validate input from elsewhereThe text was updated successfully, but these errors were encountered: