/**
  * Run a single build step linking information coming from instrumentation to the specified test
  * method run.
  *
  * @param testClass The test class that has just been run
  * @param testMethod The test method that has just been run
  * @param parameterTypes The parameters of the test method that has just been run
  * @param status he status to be assigned to the link created in this step (the status is cloned)
  */
 public void performBuildStep(
     String testClass, String testMethod, String[] parameterTypes, StatusMetadata status) {
   performBuildStep(
       InvocationTracker.getInstance().getInvokedMethodMap(),
       testClass,
       testMethod,
       parameterTypes,
       status);
 }
 /**
  * Run a single build step linking information coming from instrumentation to the specified test
  * method run.
  *
  * @param testClass The test class that has just been run
  * @param testMethod The test method that has just been run
  * @param status The status to be assigned to the link created in this step (the status is cloned)
  */
 public void performBuildStep(Class<?> testClass, Method testMethod, StatusMetadata status) {
   performBuildStep(InvocationTracker.getInstance().getInvokedMethodMap(), testClass, testMethod);
 }