Skip to content

Commit

Permalink
Renamed test methods using exec
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremyharris committed Jun 23, 2017
1 parent 1784d3d commit c845a31
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions tests/TestCase/TestSuite/ConsoleIntegrationTestCaseTest.php
Expand Up @@ -21,11 +21,11 @@ public function setUp()
}

/**
* tests cli
* tests exec
*
* @return void
*/
public function testCli()
public function testExec()
{
$this->exec('');

Expand All @@ -38,7 +38,7 @@ public function testCli()
*
* @return void
*/
public function testCliCoreCommand()
public function testExecCoreCommand()
{
$this->exec('routes');

Expand All @@ -47,11 +47,11 @@ public function testCliCoreCommand()
}

/**
* tests cli with input
* tests exec with input
*
* @return void
*/
public function testCliWithInput()
public function testExecWithInput()
{
$this->exec('sample bridge', ['javascript']);

Expand All @@ -60,11 +60,11 @@ public function testCliWithInput()
}

/**
* tests cli with multiple inputs
* tests exec with multiple inputs
*
* @return void
*/
public function testCliWithMultipleInput()
public function testExecWithMultipleInput()
{
$this->exec('sample bridge', ['cake', 'blue']);

Expand Down

0 comments on commit c845a31

Please sign in to comment.