Skip to content

Commit

Permalink
[#2593] Fix test commands. (#2673)
Browse files Browse the repository at this point in the history
  • Loading branch information
jmolivas committed Sep 9, 2016
1 parent fe30430 commit 62a1417
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 24 deletions.
File renamed without changes.
18 changes: 4 additions & 14 deletions src/Command/Test/DebugCommand.php
Expand Up @@ -19,30 +19,20 @@
use Drupal\simpletest\TestDiscovery;

/**
* Class DebugCommand
* @package Drupal\Console\Command\Test
* @DrupalCommand(
* extension = "simpletest",
* extensionType = "module",
* )
*/
class DebugCommand extends Command
{
use CommandTrait;

/**
* @DrupalCommand(
* extension = "test",
* extensionType = "module",
* dependencies = {
* “simpletest"
* }
* )
*/


/**
* @var TestDiscovery
*/
protected $test_discovery;


/**
* DebugCommand constructor.
* @param TestDiscovery $test_discovery
Expand Down
16 changes: 6 additions & 10 deletions src/Command/Test/RunCommand.php
Expand Up @@ -20,20 +20,16 @@
use Drupal\simpletest\TestDiscovery;
use Drupal\Core\Datetime\DateFormatter;

/**
* @DrupalCommand(
* extension = "simpletest",
* extensionType = "module",
* )
*/
class RunCommand extends Command
{
use CommandTrait;

/**
* @DrupalCommand(
* extension = "test",
* extensionType = "module",
* dependencies = {
* “simpletest"
* }
* )
*/

/**
* @var string
*/
Expand Down

0 comments on commit 62a1417

Please sign in to comment.