/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package mxgstest.chapters; import mxgsegse.MXGSEGSE; import mxgstest.MxgsTestException; import mxgstest.sections.*; import mxgstest.Output; /** * * @author stet */ public class Chapter5 { MXGSEGSE egse; Output output; /** * * @param egse * @param output */ public Chapter5(MXGSEGSE egse,Output output) { this.egse = egse; this.output = output; } /** * * @throws Throwable */ public void run() throws Throwable { Section5_01 section = new Section5_01(egse, output); output.printSectionStart("5.1"); try{ System.out.println("Testing"); section.step5_1_1(); section.step5_1_2(); section.step5_1_3(); section.step5_1_4(); section.step5_1_5(); section.step5_1_6(); section.step5_1_7(); section.step5_1_8(); section.step5_1_9(); section.step5_1_10(); // section.step5_1_10a(); section.step5_1_12(); section.step5_1_13(); section.step5_1_14(); // section.step5_1_15(); section.step5_1_16(); section.step5_1_17(); section.step5_1_18(); section.step5_1_19(); section.step5_1_20(); section.step5_1_21(); } catch(MxgsTestException e) { throw e; } output.printSectionEnd("5.1"); Section5_02 section2 = new Section5_02(egse, output); output.printSectionStart("5.2"); try{ section2.step5_2_1(); section2.step5_2_2(); section2.step5_2_3(); section2.step5_2_4(); section2.step5_2_5(); section2.step5_2_6(); section2.step5_2_7(); section2.step5_2_8(); section2.step5_2_9(); section2.step5_2_10(); section2.step5_2_11(); section2.step5_2_12(); section2.step5_2_13(); section2.step5_2_14(); section2.step5_2_15(); section2.step5_2_16(); section2.step5_2_17(); section2.step5_2_18(); section2.step5_2_19(); section2.step5_2_20(); } catch(MxgsTestException e) { throw e; } output.printSectionEnd("5.2"); Section5_03 section3 = new Section5_03(egse, output); output.printSectionStart("5.3"); try{ section3.step5_3_1(); section3.step5_3_2(); section3.step5_3_3(); } catch(MxgsTestException e) { throw e; } output.printSectionEnd("5.3"); Section5_04 section4 = new Section5_04(egse, output); output.printSectionStart("5.4"); try{ section4.step5_4_1(); section4.step5_4_2(); } catch(MxgsTestException e) { throw e; } output.printSectionEnd("5.4"); Section5_05 section5 = new Section5_05(egse, output); output.printSectionStart("5.5"); try{ section5.step5_5_1(); section5.step5_5_2(); } catch(MxgsTestException e) { throw e; } output.printSectionEnd("5.5"); /* Section5_06 section6 = new Section5_06(egse, output); output.printSectionStart("5.6"); try{ section6.step5_6_1(); } catch(MxgsTestException e) { throw e; } output.printSectionEnd("5.6"); */ Section5_07 section7 = new Section5_07(egse, output); output.printSectionStart("5.7"); try{ section7.step5_7_1(); section7.step5_7_2(); section7.step5_7_3(); section7.step5_7_4(); section7.step5_7_5(); } catch(MxgsTestException e) { throw e; } output.printSectionEnd("5.7"); } }