use of com.adobe.acs.commons.mcp.ProcessDefinition in project acs-aem-commons by Adobe-Consulting-Services.
the class FactoryInjectionTest method testDeepPruneFactory.
@Test
public void testDeepPruneFactory() throws Exception {
ProcessDefinition def = cpm.findDefinitionByNameOrPath("Deep Prune");
assertNotNull(def);
assertTrue(def instanceof DeepPrune);
}
use of com.adobe.acs.commons.mcp.ProcessDefinition in project acs-aem-commons by Adobe-Consulting-Services.
the class FactoryInjectionTest method testS3IngestorFactory.
@Test
public void testS3IngestorFactory() throws Exception {
ProcessDefinition def = cpm.findDefinitionByNameOrPath("S3 Asset Ingestor");
assertNotNull(def);
assertTrue(def instanceof S3AssetIngestor);
}
Aggregations