From ecfb6c4c5346a90d0e651e35b64c3f29bc67a078 Mon Sep 17 00:00:00 2001 From: Shayan Date: Tue, 12 Mar 2024 01:47:46 +0330 Subject: [PATCH] =?UTF-8?q?[clustering.jl]=20clustering=20unit=20tests=20p?= =?UTF-8?q?rovided=20=F0=9F=A7=AA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- test/clustering.jl | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 test/clustering.jl diff --git a/test/clustering.jl b/test/clustering.jl new file mode 100644 index 0000000..cbfdfc9 --- /dev/null +++ b/test/clustering.jl @@ -0,0 +1,11 @@ +using Clustering + +vals = [ + 0.526449 0.253821 0.536858 0.15444 0.39956 0.278192 0.145485 0.685143 0.495732 0.596486 + 0.913692 0.205756 0.403905 0.529887 0.104882 0.180711 0.651375 0.208858 0.307472 0.277686 + 0.537414 0.870541 0.163864 0.374202 0.0393039 0.68875 0.828697 0.0172519 0.668273 0.765799 +] + +@testset "clustering.jl" begin + cepsclustering(vals, 3) +end