https://github.com/Kitware/CMake
Raw File
Tip revision: 614ebb73752bf084eda313e222a12f5302a1121c authored by Brad King on 10 April 2024, 13:41:18 UTC
Merge topic 'swift-fix-submodule-dependencies' into release-3.29
Tip revision: 614ebb7
cmake_matlab_unit_tests4.m
classdef cmake_matlab_unit_tests4 < matlab.unittest.TestCase
  % Testing R2017b and R2018a APIs
  properties
  end

  methods (Test)
    function testR2017b(testCase)
      ret = cmake_matlab_mex2a(5+6i);
      testCase.verifyEqual(ret, 8);
    end

    function testR2018a(testCase)
      ret = cmake_matlab_mex2b(5+6i);
      if not(verLessThan('matlab','9.4')) % R2018a
        testCase.verifyEqual(ret, 16);
        disp('TESTING version >= 9.4')
      else
        testCase.verifyEqual(ret, 8);
      end
    end

  end
end
back to top