use of org.apache.maven.plugins.invoker.InvokerProperties in project maven-plugins by apache.
the class InvokerPropertiesTest method testGetJobName.
public void testGetJobName() throws Exception {
Properties props = new Properties();
final String jobName = "Build Job name";
props.put("invoker.name", jobName);
InvokerProperties facade = new InvokerProperties(props);
assertEquals(jobName, facade.getJobName());
}
Aggregations