From b01da53e7eccd502ff8b3b065e3a9ced8d95ab7a Mon Sep 17 00:00:00 2001 From: LolloBici <lorenzo.amici@skywarder.eu> Date: Wed, 11 Jun 2025 18:15:17 +0200 Subject: [PATCH] [unit-test-updates] Fixed test classes --- unitTests/tests/TestApogeeAnalysis.m | 2 +- unitTests/tests/TestCommonFunctions.m | 2 +- unitTests/tests/TestSensitivity.m | 2 +- unitTests/tests/TestSimulator.m | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/unitTests/tests/TestApogeeAnalysis.m b/unitTests/tests/TestApogeeAnalysis.m index 3c7a9b97..cc30caa3 100644 --- a/unitTests/tests/TestApogeeAnalysis.m +++ b/unitTests/tests/TestApogeeAnalysis.m @@ -1,4 +1,4 @@ -classdef TestApogeeAnalysis < UnitTest +classdef TestApogeeAnalysis < matlab.unittest.TestCase properties refStandardResults diff --git a/unitTests/tests/TestCommonFunctions.m b/unitTests/tests/TestCommonFunctions.m index 86cff731..a259a354 100644 --- a/unitTests/tests/TestCommonFunctions.m +++ b/unitTests/tests/TestCommonFunctions.m @@ -1,4 +1,4 @@ -classdef TestCommonFunctions < UnitTest +classdef TestCommonFunctions < matlab.unittest.TestCase % This class contains the common functions unit-test. % To run the test you have to create the istance of this class in the % mainUnitTests script. diff --git a/unitTests/tests/TestSensitivity.m b/unitTests/tests/TestSensitivity.m index 71d03dc7..c6cd08f2 100644 --- a/unitTests/tests/TestSensitivity.m +++ b/unitTests/tests/TestSensitivity.m @@ -1,4 +1,4 @@ -classdef TestSensitivity < UnitTest +classdef TestSensitivity < matlab.unittest.TestCase % NON FUNZIONANTE, testCase.sensitivitySettings must be of type Settings or be convertible to Settings. diff --git a/unitTests/tests/TestSimulator.m b/unitTests/tests/TestSimulator.m index 061a3b4c..34603fbc 100644 --- a/unitTests/tests/TestSimulator.m +++ b/unitTests/tests/TestSimulator.m @@ -1,4 +1,4 @@ -classdef TestSimulator < UnitTest +classdef TestSimulator < matlab.unittest.TestCase properties settings -- GitLab