use of com.hazelcast.buildutils.HazelcastManifestTransformer.InstructionDefinition in project hazelcast by hazelcast.
the class InstructionDefinitionTest method setUp.
@Before
public void setUp() {
PackageDefinition definition = new PackageDefinition("packageName", true, "version", Collections.<String>emptySet());
Instruction instruction = mock(Instruction.class);
instructionDefinition = new InstructionDefinition(definition, instruction);
}
Aggregations