for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Test suite for the Logout step.
*/
namespace Graviton\Deployment\Tests\Steps\CloudFoundry;
use Graviton\Deployment\DeployScriptsTestCase;
use Graviton\Deployment\Steps\CloudFoundry\StepLogout;
* @author List of contributors <https://github.com/libgraviton/deploy-scripts/graphs/contributors>
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
* @link http://swisscom.ch
class StepLogoutTest extends DeployScriptsTestCase
{
* Validate getCommand
*
* @return void
public function testGetCommand()
$configuration = $this->getConfigurationSet();
$step = new StepLogout($configuration);
$this->assertEquals(
array('/usr/bin/cf', 'logout'),
$step->getCommand()
);
}