/* * 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.MxgsTestException; import mxgstest.Output; import mxgstest.egse.Basic; import mxgstest.egse.Power; import mxgstest.mxgs.Dau; import mxgstest.mxgs.Dpu; import mxgstest.mxgs.Hk; import mxgstest.mxgs.Psu; /** * * @author frec */ public class Section5_09 { MXGSEGSE egse; Output output; public Section5_09(MXGSEGSE egse, Output output) throws Throwable { this.egse = egse; this.output = output; } Dpu dpu = new Dpu(); Power pow = new Power(); Basic bas = new Basic(); Dau dau = new Dau(); Psu psu = new Psu(); Hk hke = new Hk(); public void step5_7_1() throws Throwable { try{ output.printSubSectionStart("5.7.1", "Verify Col and Transport Heaters"); output.printStepStart("5.7.1-1", "not implemented yet"); bas.dontThrowAnything(); } catch(MxgsTestException e) { output.printStepStatus("5.7.1", false, e.getMessage()); throw e; } output.printStepStatus("5.7.1", true); output.printSubSectionEnd("5.7.1"); } public void step5_7_2() throws Throwable { try{ bas.dontThrowAnything(); } catch(MxgsTestException e) { output.printStepStatus("5.7.2", false, e.getMessage()); throw e; } output.printStepStatus("5.7.2", true); output.printSubSectionEnd("5.7.2"); } }