#include "t-factor.c"
#include "t-factor_squarefree.c"
#include "t-factor_wang.c"
#include "t-factor_zassenhaus.c"
#include "t-factor_zippel.c"
#include "t-gcd_brown.c"
#include "t-gcd_hensel.c"
#include "t-gcd_subresultant.c"
#include "t-gcd_zippel2.c"
#include "t-gcd_zippel.c"
test_struct tests[] =
{
TEST_FUNCTION(fmpz_mod_mpoly_factor),
TEST_FUNCTION(fmpz_mod_mpoly_factor_squarefree),
TEST_FUNCTION(fmpz_mod_mpoly_factor_wang),
TEST_FUNCTION(fmpz_mod_mpoly_factor_zassenhaus),
TEST_FUNCTION(fmpz_mod_mpoly_factor_zippel),
TEST_FUNCTION(fmpz_mod_mpoly_factor_gcd_brown),
TEST_FUNCTION(fmpz_mod_mpoly_factor_gcd_hensel),
TEST_FUNCTION(fmpz_mod_mpoly_factor_gcd_subresultant),
TEST_FUNCTION(fmpz_mod_mpoly_factor_gcd_zippel2),
TEST_FUNCTION(fmpz_mod_mpoly_factor_gcd_zippel)
};
TEST_MAIN(tests)