Skip to content
Snippets Groups Projects

Merge "Dev/ci tests" - First working matlab script CI test with protocol output - on windows server

Merged Hock, Martin requested to merge dev/CI-Tests into development
3 files
+ 29
6
Compare changes
  • Side-by-side
  • Inline
Files
3
+ 12
5
function [result] = runner_test()
%RUNNER_TEST testing function to test, if the runner is set up properly
result = true;
exit(result);
%Test 1
try
resultt = runner_testing
catch
warning("Error in Test1");
end
exit(resultt)
function [result] = runner_testing()
%RUNNER_TESTING testing function to test, if the runner is set up properly
result = true;
disp(pwd);
result = version; disp(result); result = isempty(result); disp(result); result = int8(result); disp(result); pause(5);
end
Loading