From 4f2eb8211ef5848b520705e0ba0b09876f3ec2d9 Mon Sep 17 00:00:00 2001 From: TT Date: Mon, 9 Oct 2023 15:56:32 +0200 Subject: [PATCH] reactive tests --- test/runtests.jl | 82 ++++++++++++++++++++++++------------------------ 1 file changed, 41 insertions(+), 41 deletions(-) diff --git a/test/runtests.jl b/test/runtests.jl index 977dc560..e53a8d0a 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -41,15 +41,15 @@ function runtests(exportingTool) @info "Gradient: $(GRADIENT)" @testset "Gradient: $(GRADIENT)" begin - # @info "Layers (layers.jl)" - # @testset "Layers" begin - # include("layers.jl") - # end + @info "Layers (layers.jl)" + @testset "Layers" begin + include("layers.jl") + end - # @info "Solution Gradients (solution_gradients.jl)" - # @testset "Solution Gradients" begin - # include("solution_gradients.jl") - # end + @info "Solution Gradients (solution_gradients.jl)" + @testset "Solution Gradients" begin + include("solution_gradients.jl") + end @info "ME-NeuralFMU (Continuous) (hybrid_ME.jl)" @testset "ME-NeuralFMU (Continuous)" begin @@ -61,42 +61,42 @@ function runtests(exportingTool) include("hybrid_ME_dis.jl") end - # @info "NeuralFMU with FMU parameter optimization (fmu_params.jl)" - # @testset "NeuralFMU with FMU parameter optimization" begin - # include("fmu_params.jl") - # end - - # @info "Training modes (train_modes.jl)" - # @testset "Training modes" begin - # include("train_modes.jl") - # end - - # @info "Multi-threading (multi_threading.jl)" - # @testset "Multi-threading" begin - # include("multi_threading.jl") - # end - - # @info "CS-NeuralFMU (hybrid_CS.jl)" - # @testset "CS-NeuralFMU" begin - # include("hybrid_CS.jl") - # end - - # @info "Multiple FMUs (multi.jl)" - # @testset "Multiple FMUs" begin - # include("multi.jl") - # end - - # @info "Batching (batching.jl)" - # @testset "Batching" begin - # include("batching.jl") - # end + @info "NeuralFMU with FMU parameter optimization (fmu_params.jl)" + @testset "NeuralFMU with FMU parameter optimization" begin + include("fmu_params.jl") + end + + @info "Training modes (train_modes.jl)" + @testset "Training modes" begin + include("train_modes.jl") + end + + @info "Multi-threading (multi_threading.jl)" + @testset "Multi-threading" begin + include("multi_threading.jl") + end + + @info "CS-NeuralFMU (hybrid_CS.jl)" + @testset "CS-NeuralFMU" begin + include("hybrid_CS.jl") + end + + @info "Multiple FMUs (multi.jl)" + @testset "Multiple FMUs" begin + include("multi.jl") + end + + @info "Batching (batching.jl)" + @testset "Batching" begin + include("batching.jl") + end end end - # @info "Benchmark: Supported sensitivities (supported_sensitivities.jl)" - # @testset "Benchmark: Supported sensitivities " begin - # include("supported_sensitivities.jl") - # end + @info "Benchmark: Supported sensitivities (supported_sensitivities.jl)" + @testset "Benchmark: Supported sensitivities " begin + include("supported_sensitivities.jl") + end end end