releaseManager.prepare( new ReleaseDescriptor(), new DefaultReleaseEnvironment(), null, true, true );
@SuppressWarnings("unchecked")
Map<String,ReleasePhaseStub> phases = container.lookupMap( ReleasePhase.ROLE );
ReleasePhaseStub phase = (ReleasePhaseStub) phases.get( "step1" );
assertFalse( "step1 not simulated", phase.isSimulated() );
assertFalse( "step1 not executed", phase.isExecuted() );
phase = (ReleasePhaseStub) phases.get( "step2" );
assertFalse( "step2 not simulated", phase.isSimulated() );
assertFalse( "step2 not executed", phase.isExecuted() );
phase = (ReleasePhaseStub) phases.get( "step3" );
assertFalse( "step3 not simulated", phase.isSimulated() );
assertFalse( "step3 not executed", phase.isExecuted() );
}