Test method tenmplates

This commit is contained in:
dsyer
2007-08-21 15:09:11 +00:00
parent 45d7183d83
commit e475f0e3d0

View File

@@ -45,10 +45,6 @@ public abstract class AbstractBatchLauncherTests extends AbstractDependencyInjec
return jobConfiguration.getName();
}
public void setBatchContainerLauncher(SynchronousJobLauncher launcher) {
this.launcher = launcher;
}
/**
* @param jobConfiguration the jobConfiguration to set
*/
@@ -56,4 +52,13 @@ public abstract class AbstractBatchLauncherTests extends AbstractDependencyInjec
this.jobConfiguration = jobConfiguration;
}
/**
* Public setter for the {@link SynchronousJobLauncher} property.
*
* @param launcher the launcher to set
*/
public void setLauncher(SynchronousJobLauncher launcher) {
this.launcher = launcher;
}
}