/* * 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.sections; import mxgsegse.MXGSEGSE; import mxgstest.*; import mxgstest.egse.Basic; import mxgstest.egse.Power; import mxgstest.mxgs.*; import mxgstest.MxgsTestException; /** * * @author frec */ public class Section8_06 { MXGSEGSE egse; Output output; public Section8_06(MXGSEGSE egse, Output output) throws Throwable { this.egse = egse; this.output = output; } Dpu dpu = new Dpu(); Power pow = new Power(); Basic bas = new Basic(); Hk hke = new Hk(); public void step8_6_1() throws Throwable { try{ bas.dontThrowAnything(); } catch(MxgsTestException e) { output.printStepStatus("8.6.1", false, e.getMessage()); throw e; } output.printStepStatus("8.6.1", true); output.printSubSectionEnd("8.6.1"); } public void step8_6_2() throws Throwable { try{ bas.dontThrowAnything(); } catch(MxgsTestException e) { output.printStepStatus("8.6.2", false, e.getMessage()); throw e; } output.printStepStatus("8.6.2", true); output.printSubSectionEnd("8.6.2"); } }