From de9ae08a8f07a36c5364714381dd0c28be0fbc4a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kristian=20Agas=C3=B8ster=20Haaga?= Date: Wed, 1 Dec 2021 11:30:05 +0100 Subject: [PATCH] Test Dataset explicitly --- test/runtests.jl | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/runtests.jl b/test/runtests.jl index 58099aebe..a22e2a9e0 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -3,6 +3,8 @@ using CausalityTools import DelayEmbeddings: Dataset import DynamicalSystemsBase: DiscreteDynamicalSystem, ContinuousDynamicalSystem +x, y = rand(100), rand(100) +@test Dataset(x, y) isa Dataset include("methods/test_smeasure.jl") include("methods/test_joint_distance_distribution.jl")