Skip to content

Commit

Permalink
test higher order plotting
Browse files Browse the repository at this point in the history
  • Loading branch information
thorek1 committed Sep 24, 2023
1 parent a1ce876 commit d93e46e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -61,28 +61,28 @@ GC.gc()
if test_higher_order
@testset verbose = true "FS2000 second order" begin
include("models/FS2000.jl")
functionality_test(m, algorithm = :second_order, plots = false)
functionality_test(m, algorithm = :second_order, plots = true)
end
m = nothing
GC.gc()

@testset verbose = true "FS2000 pruned second order" begin
include("models/FS2000.jl")
functionality_test(m, algorithm = :pruned_second_order, plots = false)
functionality_test(m, algorithm = :pruned_second_order, plots = true)
end
m = nothing
GC.gc()

@testset verbose = true "FS2000 third order" begin
include("models/FS2000.jl")
functionality_test(m, algorithm = :third_order, plots = false)
functionality_test(m, algorithm = :third_order, plots = true)
end
m = nothing
GC.gc()

@testset verbose = true "FS2000 pruned third order" begin
include("models/FS2000.jl")
functionality_test(m, algorithm = :pruned_third_order, plots = false)
functionality_test(m, algorithm = :pruned_third_order, plots = true)
end
m = nothing
GC.gc()
Expand Down

0 comments on commit d93e46e

Please sign in to comment.