@@ -32,7 +32,7 @@ public class SysMLRepositorySaveTest extends SysMLRepositorySaveUtil {
3232 "02-Parts Interconnection/2a-Parts Interconnection.sysml" ,
3333 "03-Function-based Behavior/3a-Function-based Behavior-1.sysml" ,
3434 "03-Function-based Behavior/3a-Function-based Behavior-2.sysml" ,
35- "03-Function-based Behavior/3a-Function-based Behavior-5 .sysml" ,
35+ "03-Function-based Behavior/3a-Function-based Behavior-3 .sysml" ,
3636 "04-Functional Allocation/4a-Functional Allocation.sysml" ,
3737 "05-State-based Behavior/5-State-based Behavior-1.sysml" ,
3838 "05-State-based Behavior/5-State-based Behavior-1a.sysml" ,
@@ -86,19 +86,19 @@ protected String[] processArgs(String[] args) {
8686
8787 public static void main (String [] args ) {
8888 List <String > failedTests = new ArrayList <>();
89- try {
90- String [] args1 = Arrays . copyOf ( args , args . length );
91- for ( String testFile : TEST_FILES ) {
89+ String [] args1 = Arrays . copyOf ( args , args . length );
90+ for ( String testFile : TEST_FILES ) {
91+ try {
9292 SysMLRepositorySaveTest test = new SysMLRepositorySaveTest (testFile );
9393 test .run (args1 );
9494 if (!test .isCommitted ()) {
9595 failedTests .add (testFile );
9696 }
97- System .out .println ();
97+ System .out .println ();
98+ } catch (Exception e ) {
99+ System .out .println ("Error: " + e );
100+ failedTests .add (testFile );
98101 }
99-
100- } catch (Exception e ) {
101- System .out .println ("Error: " + e );
102102 }
103103
104104 if (failedTests .isEmpty ()) {
0 commit comments