TEST_SYNGRID Run all SynGrid tests. TEST_SYNGRID TEST_SYNGRID(VERBOSE) TEST_SYNGRID(VERBOSE, EXIT_ON_FAIL) SUCCESS = TEST_SYNGRID(...) Runs all of the SynGrid 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_syngrid(verbose, exit_on_fail) 0002 %TEST_SYNGRID Run all SynGrid tests. 0003 % TEST_SYNGRID 0004 % TEST_SYNGRID(VERBOSE) 0005 % TEST_SYNGRID(VERBOSE, EXIT_ON_FAIL) 0006 % SUCCESS = TEST_SYNGRID(...) 0007 % 0008 % Runs all of the SynGrid 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 % SynGrid 0016 % Copyright (c) 2017-2018, Power Systems Engineering Research Center (PSERC) 0017 % by Ray Zimmerman, PSERC Cornell 0018 % 0019 % This file is part of SynGrid. 0020 % Covered by the 3-clause BSD License (see LICENSE file for details). 0021 0022 if nargin < 2 0023 exit_on_fail = 0; 0024 if nargin < 1 0025 verbose = 0; 0026 end 0027 end 0028 0029 tests = {}; 0030 0031 %% SynGrid tests 0032 tests{end+1} = 't_sg_options'; 0033 tests{end+1} = 't_sgvm_add_shunts'; 0034 tests{end+1} = 't_sgvm_data2mpc'; 0035 tests{end+1} = 't_syngrid'; 0036 tests{end+1} = 't_syngrid_vm'; 0037 0038 %% run the tests 0039 all_ok = t_run_tests( tests, verbose ); 0040 0041 %% handle success/failure 0042 if exit_on_fail && ~all_ok 0043 exit(1); 0044 end 0045 if nargout 0046 success = all_ok; 0047 end