/**
  * Test importing of mrna_test file.
  *
  * @throws Exception All Errors.
  */
 @Test
 public void testImportmRnaData1BulkLoadOff() throws Exception {
   // test with both values of MySQLbulkLoader.isBulkLoad()
   MySQLbulkLoader.bulkLoadOff();
   runImportRnaData1();
 }
  /**
   * Test importing of cna_test.txt file.
   *
   * @throws Exception All Errors.
   */
  @Test
  public void testImportCnaDataBulkLoadOff() throws Exception {

    MySQLbulkLoader.bulkLoadOff();
    runImportCnaData();
  }