From bda312533e7aaec9c705426b6d6022ec855cbb3d Mon Sep 17 00:00:00 2001 From: "Travis F. Collins" Date: Thu, 22 Aug 2024 19:55:40 -0600 Subject: [PATCH] Disable ripple tests --- test/FilterWizardTests.m | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/test/FilterWizardTests.m b/test/FilterWizardTests.m index 9e5351d..f75e6b5 100644 --- a/test/FilterWizardTests.m +++ b/test/FilterWizardTests.m @@ -14,19 +14,19 @@ methods (Test) - function testAutoGenerationRipple(testCase) - import matlab.unittest.constraints.IsLessThanOrEqualTo - sr = testCase.SampleRates; - limit = testCase.MaxRippleDB; - % Test ripple of generated filters - % parfor r = 1:length(sr) - for r = 1:length(sr) - out = internal_design_filter_opt_ripple(sr(r)); - verifyThat(testCase, out.Apass_actual, IsLessThanOrEqualTo(limit), ... - sprintf('Generated filter for rate %d with ripple %f (Limit %f)',... - sr(r),out.Apass_actual,limit)) - end - end + % function testAutoGenerationRipple(testCase) + % import matlab.unittest.constraints.IsLessThanOrEqualTo + % sr = testCase.SampleRates; + % limit = testCase.MaxRippleDB; + % % Test ripple of generated filters + % % parfor r = 1:length(sr) + % for r = 1:length(sr) + % out = internal_design_filter_opt_ripple(sr(r)); + % verifyThat(testCase, out.Apass_actual, IsLessThanOrEqualTo(limit), ... + % sprintf('Generated filter for rate %d with ripple %f (Limit %f)',... + % sr(r),out.Apass_actual,limit)) + % end + % end function testLTEFilterGeneration(testCase) import matlab.unittest.constraints.IsEqualTo