Files
nanoconc/test/nanoconc_tests.jl
2024-02-02 09:38:42 +00:00

24 lines
506 B
Julia

using Test
if !@isdefined TestUtils
include("testutils.jl")
end
if !@isdefined nanoconc
include("../src/nanoconc.jl")
end
@testset "nanoconc" begin
@testset "qpredict" begin
TestUtils.test_from_serialized(
nanoconc.qpredict,
"test/data/Main.nanoconc.qpredict.ser"
)
end
@testset "nanoconc" begin
TestUtils.test_from_serialized(
nanoconc.abspredict,
"test/data/Main.nanoconc.abspredict.ser"
)
end
end