#include "t-add_sub.c"
#include "t-divexact.c"
#include "t-divrem_approx.c"
#include "t-divrem.c"
#include "t-gcd_binary.c"
#include "t-gcd.c"
#include "t-gcd_euclidean.c"
#include "t-gcd_euclidean_improved.c"
#include "t-gcd_shortest.c"
#include "t-is_prime.c"
#include "t-is_probabprime.c"
#include "t-mul.c"
#include "t-pow_ui.c"
#include "t-remove_one_plus_i.c"
test_struct tests[] =
{
TEST_FUNCTION(fmpzi_add_sub),
TEST_FUNCTION(fmpzi_divexact),
TEST_FUNCTION(fmpzi_divrem_approx),
TEST_FUNCTION(fmpzi_divrem),
TEST_FUNCTION(fmpzi_gcd_binary),
TEST_FUNCTION(fmpzi_gcd),
TEST_FUNCTION(fmpzi_gcd_euclidean),
TEST_FUNCTION(fmpzi_gcd_euclidean_improved),
TEST_FUNCTION(fmpzi_gcd_shortest),
TEST_FUNCTION(fmpzi_is_prime),
TEST_FUNCTION(fmpzi_is_probabprime),
TEST_FUNCTION(fmpzi_mul),
TEST_FUNCTION(fmpzi_pow_ui),
TEST_FUNCTION(fmpzi_remove_one_plus_i)
};
TEST_MAIN(tests)