#include "t-factor_berlekamp.c"
#include "t-factor.c"
#include "t-factor_cantor_zassenhaus.c"
#include "t-factor_distinct_deg.c"
#include "t-factor_equal_deg_prob.c"
#include "t-factor_kaltofen_shoup.c"
#include "t-factor_split_single.c"
#include "t-factor_squarefree.c"
#include "t-is_irreducible_ben_or.c"
#include "t-is_irreducible.c"
#include "t-is_irreducible_ddf.c"
#include "t-is_squarefree.c"
#include "t-iterated_frobenius_preinv.c"
#include "t-roots.c"
test_struct tests[] =
{
TEST_FUNCTION(fq_poly_factor_berlekamp),
TEST_FUNCTION(fq_poly_factor),
TEST_FUNCTION(fq_poly_factor_cantor_zassenhaus),
TEST_FUNCTION(fq_poly_factor_distinct_deg),
TEST_FUNCTION(fq_poly_factor_equal_deg_prob),
TEST_FUNCTION(fq_poly_factor_kaltofen_shoup),
TEST_FUNCTION(fq_poly_factor_split_single),
TEST_FUNCTION(fq_poly_factor_squarefree),
TEST_FUNCTION(fq_poly_factor_is_irreducible_ben_or),
TEST_FUNCTION(fq_poly_factor_is_irreducible),
TEST_FUNCTION(fq_poly_factor_is_irreducible_ddf),
TEST_FUNCTION(fq_poly_factor_is_squarefree),
TEST_FUNCTION(fq_poly_factor_iterated_frobenius_preinv),
TEST_FUNCTION(fq_poly_factor_roots)
};
TEST_MAIN(tests)