/**
  * Test that PUT {host}/db/compress compresses the database tables.
  *
  * @throws Exception If problems occur.
  */
 @Test
 public void testCompress() throws Exception { // NOPMD
   SensorBaseClient client = new SensorBaseClient(getHostName(), adminEmail, adminPassword);
   client.authenticate();
   client.setTimeout(200000);
   client.compressTables();
 }