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
Tests looks very similar, like
#include "fmpz.h" int main(void) { /* Declarations */ FLINT_TEST_INIT(state); flint_printf("add...."); fflush(stdout); /* Performing tests */ FLINT_TEST_CLEANUP(state); flint_printf("PASS\n"); return 0; }
We can reduce this, just like what is currently proposed in #1341, to something like
#include "test_helpers.h" #include "fmpz.h" TEST_FUNCTION_START(fmpz_add) { /* Declarations */ /* Performing tests */ TEST_FUNCTION_END; }
Note: I want to add that I think it is a good idea to print fmpz_add... instead of add... since it clearly specifies what function is being tested.
fmpz_add...
add...
The text was updated successfully, but these errors were encountered:
Completed as of #1341.
Sorry, something went wrong.
No branches or pull requests
Tests looks very similar, like
We can reduce this, just like what is currently proposed in #1341, to something like
Note: I want to add that I think it is a good idea to print
fmpz_add...
instead ofadd...
since it clearly specifies what function is being tested.The text was updated successfully, but these errors were encountered: