@Override
  protected void setUp() throws Exception {
    super.setUp();

    myPrevFormatSetting = HbConfig.isFormattingEnabled();
    HbConfig.setFormattingEnabled(true);
  }
  @Override
  protected void tearDown() throws Exception {
    HbConfig.setFormattingEnabled(myPrevFormatSetting);

    super.tearDown();
  }