JAL-2890 renamed cipres job to query builder
[jalview.git] / test / jalview / ext / cipres / CipresQueryBuilderTest.java
@@ -11,7 +11,7 @@ import java.util.Arrays;
 import org.testng.annotations.BeforeClass;
 import org.testng.annotations.Test;
 
-public class CipresJobTest
+public class CipresQueryBuilderTest
 {
   @BeforeClass(
     alwaysRun = true
@@ -27,7 +27,7 @@ public class CipresJobTest
   )
   public void testSettingJobParameters()
   {
-    CipresJob testJob = new CipresJob("examples/plantfdx.fa");
+    CipresQueryBuilder testJob = new CipresQueryBuilder("examples/plantfdx.fa");
     testJob.addToolParameters("runtime_", Arrays.asList("0.3"));
     testJob.addInputParameter("test", "hoi");
     testJob.addMetadata("hennepin", "crawler");
@@ -45,7 +45,7 @@ public class CipresJobTest
   )
   public void testValidatingParameters()
   {
-    CipresJob testJob = new CipresJob("examples/plantfdx.fa", "CLUSTALW");
+    CipresQueryBuilder testJob = new CipresQueryBuilder("examples/plantfdx.fa", "CLUSTALW");
     testJob.addToolParameters("runtime_", Arrays.asList("0.2"));
     testJob.addMetadata("clientJobId", "101");
     testJob.validateJobParams();
@@ -59,7 +59,7 @@ public class CipresJobTest
   )
   public void testJobSubmission()
   {
-    CipresJob testJob = new CipresJob("examples/plantfdx.fa", "CLUSTALW");
+    CipresQueryBuilder testJob = new CipresQueryBuilder("examples/plantfdx.fa", "CLUSTALW");
     testJob.addToolParameters("runtime_", Arrays.asList("0.2"));
     testJob.addMetadata("clientJobId", "102");
     testJob.addMetadata("statusEmail", "false");