/** After class. */
 @AfterClass
 public static void afterClass() {
   UIWriter.setOutStream(System.out);
 }
 /**
  * Start class test.
  *
  * @throws FileNotFoundException the file not found exception
  */
 @BeforeClass
 public static void startClassTest() throws FileNotFoundException {
   TH.setupLogging();
   Logger.getInstance().info("LOGICAL UNIT COMMANDS TEST");
   UIWriter.setOutStream(new PrintStream(new FileOutputStream(TH.clioFile)));
 }