TEST_SDP_PF Run all SDP_PF tests. TEST_SDP_PF TEST_SDP_PF(VERBOSE) TEST_SDP_PF(VERBOSE, EXIT_ON_FAIL) SUCCESS = TEST_SDP_PF(...) Runs all of the SDP_PF tests. If VERBOSE is true (false by default), it prints the details of the individual tests. If EXIT_ON_FAIL is true (false by default), it will exit MATLAB or Octave with a status of 1 unless T_RUN_TESTS returns ALL_OK. See also T_RUN_TESTS.
0001 function success = test_sdp_pf(verbose, exit_on_fail) 0002 %TEST_SDP_PF Run all SDP_PF tests. 0003 % TEST_SDP_PF 0004 % TEST_SDP_PF(VERBOSE) 0005 % TEST_SDP_PF(VERBOSE, EXIT_ON_FAIL) 0006 % SUCCESS = TEST_SDP_PF(...) 0007 % 0008 % Runs all of the SDP_PF tests. If VERBOSE is true (false by default), 0009 % it prints the details of the individual tests. If EXIT_ON_FAIL is true 0010 % (false by default), it will exit MATLAB or Octave with a status of 1 0011 % unless T_RUN_TESTS returns ALL_OK. 0012 % 0013 % See also T_RUN_TESTS. 0014 0015 % MATPOWER 0016 % Copyright (c) 2004-2019, Power Systems Engineering Research Center (PSERC) 0017 % by Ray Zimmerman, PSERC Cornell 0018 % 0019 % This file is part of MATPOWER/mx-sdp_pf. 0020 % Covered by the 3-clause BSD License (see LICENSE file for details). 0021 % See https://github.com/MATPOWER/mx-sdp_pf/ for more info. 0022 0023 if nargin < 2 0024 exit_on_fail = 0; 0025 if nargin < 1 0026 verbose = 0; 0027 end 0028 end 0029 0030 tests = {}; 0031 0032 if have_feature('mosek') || have_feature('sdpt3') || have_feature('sedumi') 0033 tests{end+1} = 't_opf_sdpopf'; 0034 tests{end+1} = 't_insolvablepf'; 0035 tests{end+1} = 't_insolvablepf_limitQ'; 0036 tests{end+1} = 't_insolvablepfsos'; 0037 tests{end+1} = 't_insolvablepfsos_limitQ'; 0038 end 0039 tests{end+1} = 't_testglobalopt'; 0040 0041 %% run the tests 0042 all_ok = t_run_tests( tests, verbose ); 0043 0044 %% handle success/failure 0045 if exit_on_fail && ~all_ok 0046 exit(1); 0047 end 0048 if nargout 0049 success = all_ok; 0050 end