From 672f68243bed871783ce37eab9a1e9dc127c5c19 Mon Sep 17 00:00:00 2001 From: scivision Date: Mon, 8 Jul 2024 13:28:28 -0400 Subject: [PATCH] TestHDF4: need assume check for test file --- test/TestHDF4.m | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/TestHDF4.m b/test/TestHDF4.m index 5abbaa4..2449194 100644 --- a/test/TestHDF4.m +++ b/test/TestHDF4.m @@ -6,7 +6,9 @@ methods (TestClassSetup) function setup_path(tc) +import matlab.unittest.constraints.IsFile tc.TestData.basic = fullfile(matlabroot, "toolbox/matlab/demos/example.hdf"); +tc.assumeThat(tc.TestData.basic, IsFile) end end