diff --git a/test/23_test_problems.jl b/test/23_test_problems.jl index 72843c42e..cc115a1a5 100644 --- a/test/23_test_problems.jl +++ b/test/23_test_problems.jl @@ -101,3 +101,12 @@ end test_on_library(problems, dicts, alg_ops, broken_tests) end + +@testset "PseudoTransient 23 Test Problems" begin + alg_ops = (PseudoTransient(; alpha_initial = 10.0),) + + broken_tests = Dict(alg => Int[] for alg in alg_ops) + broken_tests[alg_ops[1]] = [1, 6, 9, 18, 21, 22] + + test_on_library(problems, dicts, alg_ops, broken_tests) +end