installer.getStatus();
EasyMock.expectLastCall().andReturn(Status.NONE);
installer.getStatus();
EasyMock.expectLastCall().andReturn(Status.REBOOT_REQUIRED);
installer.getAlerts();
EasyMock.expectLastCall().andReturn(new Alerts()).anyTimes();
final Runner runner = new Runner(installer);
EasyMock.replay(paths, installer);
Assert.assertEquals("NONE", getValue("status", runner.execute(false)));