#include "t-factor.c"
#include "t-factor_content.c"
#include "t-factor_squarefree.c"
#include "t-factor_wang.c"
#include "t-factor_zassenhaus.c"
#include "t-factor_zippel.c"
#include "t-gcd_subresultant.c"
#include "t-gcd_zippel.c"
test_struct tests[] =
{
TEST_FUNCTION(nmod_mpoly_factor),
TEST_FUNCTION(nmod_mpoly_factor_content),
TEST_FUNCTION(nmod_mpoly_factor_squarefree),
TEST_FUNCTION(nmod_mpoly_factor_wang),
TEST_FUNCTION(nmod_mpoly_factor_zassenhaus),
TEST_FUNCTION(nmod_mpoly_factor_zippel),
TEST_FUNCTION(nmod_mpoly_factor_gcd_subresultant),
TEST_FUNCTION(nmod_mpoly_factor_gcd_zippel)
};
TEST_MAIN(tests)