/**
  * @test
  */
 public function buildConfigReturnsProcess()
 {
     $iO = Mockery::mock(IOInterface::class);
     $iO->shouldReceive('ask');
     $this->event->shouldReceive('isDevMode')->andReturn(true);
     $this->event->shouldReceive('getIO')->andReturn($iO);
     $buildConfig = ConfiguratorScript::buildConfig($this->event);
     $this->assertNull($buildConfig);
 }