1
0
mirror of https://github.com/kalmarek/Groups.jl.git synced 2024-08-27 04:30:53 +02:00
Groups.jl/test/runtests.jl

29 lines
522 B
Julia
Raw Normal View History

2018-09-21 18:08:44 +02:00
using Test
2018-07-30 08:30:27 +02:00
using Groups
2022-04-02 15:50:03 +02:00
using PermutationGroups
2021-06-21 19:14:42 +02:00
import KnuthBendix: Word
2018-09-21 18:08:44 +02:00
2021-06-21 18:16:04 +02:00
using GroupsCore
include(joinpath(pathof(GroupsCore), "..", "..", "test", "conformance_test.jl"))
2021-06-21 18:16:04 +02:00
@testset "Groups" begin
2021-05-24 14:46:54 +02:00
2021-06-21 18:16:04 +02:00
include("free_groups.jl")
include("fp_groups.jl")
2021-06-10 12:54:27 +02:00
include("matrix_groups.jl")
2021-06-21 18:16:04 +02:00
include("AutFn.jl")
2022-04-02 14:24:01 +02:00
include("homomorphisms.jl")
2021-07-07 10:41:34 +02:00
include("AutSigma_41.jl")
2021-08-13 16:20:31 +02:00
include("AutSigma3.jl")
2021-06-21 16:39:54 +02:00
include("group_constructions.jl")
2021-06-21 18:16:04 +02:00
# if !haskey(ENV, "CI")
# include("benchmarks.jl")
# end
2017-01-23 16:53:33 +01:00
end