From e0dca10273be0e16375b33b01e96a0c35a4f510b Mon Sep 17 00:00:00 2001 From: Oliver Schulz Date: Wed, 7 Aug 2024 19:02:52 +0200 Subject: [PATCH] Test Plots and LegendHDF5IO extension loading --- test/Project.toml | 2 ++ test/runtests.jl | 5 +++-- test/test_ext_legendhdf5io.jl | 9 +++++++++ test/test_ext_plots.jl | 9 +++++++++ 4 files changed, 23 insertions(+), 2 deletions(-) create mode 100644 test/test_ext_legendhdf5io.jl create mode 100644 test/test_ext_plots.jl diff --git a/test/Project.toml b/test/Project.toml index 38ddbb22..2f695683 100644 --- a/test/Project.toml +++ b/test/Project.toml @@ -3,8 +3,10 @@ Aqua = "4c88cf16-eb10-579e-8560-4a9242c79595" Dates = "ade2ca70-3891-5945-98fb-dc099432e06a" Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4" JSON = "682c06a0-de6a-54ab-a142-c8b1cf79cde6" +LegendHDF5IO = "c9265ca6-b027-5446-b1a4-febfa8dd10b0" LegendTestData = "33d6da08-6349-5f7c-b5a4-6ff4d8795aaf" Measurements = "eff96d63-e80a-5855-80a2-b1b0885c5ab7" +Plots = "91a5bcdd-55d7-5caf-9e0b-520d859cae80" PropDicts = "4dc08600-4268-439e-8673-d706fafbb426" PropertyFunctions = "09e99361-2bb8-48a2-a80f-de58f0739eb4" SolidStateDetectors = "71e43887-2bd9-5f77-aebd-47f656f0a3f0" diff --git a/test/runtests.jl b/test/runtests.jl index 24198aaa..34117712 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -14,9 +14,10 @@ Test.@testset "Package LegendDataManagement" begin include("test_ljl_expressions.jl") include("test_lpy_expressions.jl") include("test_dataprod_config.jl") - include("test_ext_ssd.jl") include("test_lprops.jl") - + include("test_ext_ssd.jl") + include("test_ext_plots.jl") + include("test_ext_legendhdf5io.jl") include("test_docs.jl") isempty(Test.detect_ambiguities(LegendDataManagement)) end # testset diff --git a/test/test_ext_legendhdf5io.jl b/test/test_ext_legendhdf5io.jl new file mode 100644 index 00000000..d2b1fd41 --- /dev/null +++ b/test/test_ext_legendhdf5io.jl @@ -0,0 +1,9 @@ +# This file is a part of LegendDataManagement.jl, licensed under the MIT License (MIT). + +using LegendDataManagement +using Test + +import LegendHDF5IO + +@testset "test_ext_legendhdf5io" begin +end diff --git a/test/test_ext_plots.jl b/test/test_ext_plots.jl new file mode 100644 index 00000000..613331c2 --- /dev/null +++ b/test/test_ext_plots.jl @@ -0,0 +1,9 @@ +# This file is a part of jl, licensed under the MIT License (MIT). + +using LegendDataManagement +using Test + +import Plots + +@testset "test_ext_plots" begin +end