From 1dcbb1e951e84d5acc3ac59c2b42892abcb3d8a4 Mon Sep 17 00:00:00 2001 From: halentin Date: Wed, 27 Nov 2024 15:14:38 +0000 Subject: [PATCH] add dependencies="" FMI3 Test --- test/FMI3/model_description.jl | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/test/FMI3/model_description.jl b/test/FMI3/model_description.jl index 2544770..3d3a7bb 100644 --- a/test/FMI3/model_description.jl +++ b/test/FMI3/model_description.jl @@ -41,10 +41,9 @@ info(myFMU) # check if there is an error thrown unloadFMU(myFMU) -# Sadly there are no FMI3-Reference-FMUs with dependencies="" -# myFMU = loadFMU("Dahlquist", "ModelicaReferenceFMUs", "0.0.30", "3.0") -# @test !isnothing(myFMU.modelDescription.modelStructure.outputs[1].dependencies) +myFMU = loadFMU("Dahlquist", "ModelicaReferenceFMUs", "0.0.36", "3.0") +@test !isnothing(myFMU.modelDescription.modelStructure.outputs[1].dependencies) -# info(myFMU) # check if there is an error thrown +info(myFMU) # check if there is an error thrown -# unloadFMU(myFMU) +unloadFMU(myFMU)