Search in sources :

Example 1 with StandardMetacardGroomerPlugin

use of ddf.catalog.plugin.groomer.metacard.StandardMetacardGroomerPlugin in project ddf by codice.

the class TestMetacardGroomerPlugin method setUp.

@Before
public void setUp() {
    uuidGenerator = mock(UuidGenerator.class);
    when(uuidGenerator.generateUuid()).thenReturn(UUID.randomUUID().toString());
    plugin = new StandardMetacardGroomerPlugin();
    plugin.setUuidGenerator(uuidGenerator);
}
Also used : UuidGenerator(org.codice.ddf.platform.util.uuidgenerator.UuidGenerator) StandardMetacardGroomerPlugin(ddf.catalog.plugin.groomer.metacard.StandardMetacardGroomerPlugin) Before(org.junit.Before)

Example 2 with StandardMetacardGroomerPlugin

use of ddf.catalog.plugin.groomer.metacard.StandardMetacardGroomerPlugin in project ddf by codice.

the class MetacardGroomerPluginTest method setUp.

@Before
public void setUp() {
    uuidGenerator = mock(UuidGenerator.class);
    when(uuidGenerator.generateUuid()).thenReturn(UUID.randomUUID().toString());
    plugin = new StandardMetacardGroomerPlugin();
    plugin.setUuidGenerator(uuidGenerator);
}
Also used : UuidGenerator(org.codice.ddf.platform.util.uuidgenerator.UuidGenerator) StandardMetacardGroomerPlugin(ddf.catalog.plugin.groomer.metacard.StandardMetacardGroomerPlugin) Before(org.junit.Before)

Aggregations

StandardMetacardGroomerPlugin (ddf.catalog.plugin.groomer.metacard.StandardMetacardGroomerPlugin)2 UuidGenerator (org.codice.ddf.platform.util.uuidgenerator.UuidGenerator)2 Before (org.junit.Before)2