/* * 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; /** * * @author stet */ public class Section5_06 { MXGSEGSE egse; Output output; public Section5_06(MXGSEGSE egse, Output output) throws Throwable { this.egse = egse; this.output = output; } Power pow = new Power(); Basic bas = new Basic(); public void step5_6_1() throws Throwable { try{ output.printSubSectionStart("5.6.1", "Verify Dausim log"); output.printStepStart("5.6.1-1", "not implemented yet"); bas.dontThrowAnything(); } catch(MxgsTestException e) { output.printStepStatus("5.6.1", false, e.getMessage()); throw e; } output.printStepStatus("5.6.1", true); output.printSubSectionEnd("5.6.1"); } }