@Test
 public void testCancel() throws Exception {
   NewStrategyAgentWizardFixture fixture =
       NewStrategyAgentWizardFixture.create(mShell, mMockService, null);
   fixture.cancel();
   assertThat(fixture.waitForClose(), nullValue());
   verify(mMockService, never()).addEngine((StrategyEngine) anyObject());
 }