/* * 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 frec */ public class Chapter8 { MXGSEGSE egse; Output output; /** * * @param egse * @param output */ public Chapter8(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("8.1"); try{ 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_11(); 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.step6_1_18(); // section.step6_1_19(); // section.step6_1_20(); // section.step6_1_21(); } catch(MxgsTestException e) { throw e; } output.printSectionEnd("8.1"); Section8_05 section5 = new Section8_05(egse, output); output.printSectionStart("8.5"); try{ section5.step8_5_1(); } catch(MxgsTestException e) { throw e; } output.printSectionEnd("8.5"); Section8_06 section6 = new Section8_06(egse, output); output.printSectionStart("8.6"); try{ section6.step8_6_1(); section6.step8_6_2(); } catch(MxgsTestException e) { throw e; } output.printSectionEnd("8.8"); } }