Skip to content

Commit

Permalink
Adds missing class doc comment
Browse files Browse the repository at this point in the history
  • Loading branch information
kenorb committed Mar 26, 2018
1 parent 785a2e9 commit aa3b062
Show file tree
Hide file tree
Showing 7 changed files with 24 additions and 10 deletions.
4 changes: 3 additions & 1 deletion src/NT/Drupal/Testing/Fixtures/fixture_helper.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
<?php

namespace NT\Drupal\Testing\Fixtures;

/**
*
*/
class fixture_helper {

protected static $instance;
Expand Down
4 changes: 3 additions & 1 deletion src/NT/Drupal/Testing/Fixtures/fixtures.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@

namespace NT\Drupal\Testing\Fixtures;
use NT\Drupal\Testing\PHPUnit\fixture_helper;

/**
*
*/
abstract class fixtures {

public function __construct() {
Expand Down
10 changes: 6 additions & 4 deletions src/NT/Drupal/Testing/PHPUnit/drupal_test_case.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,13 @@
use PHPUnit\Framework\TestCase;
use PHPUnit\Framework\TestResult;

/*
* @todo: Perhaps move these annotations down to the instance classes and tests.
/**
*
*@todo: Perhaps move these annotations down to the instance classes and tests.
*
* @runTestsInSeparateProcess
* @preserveGlobalState disabled
*@runTestsInSeparateProcess
*@preserveGlobalState disabled
*/
abstract class DrupalTestCase extends TestCase {

Expand Down
4 changes: 3 additions & 1 deletion src/NT/Drupal/Testing/PHPUnit/drupal_unit_test_case.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
<?php

namespace NT\Drupal\Testing\PHPUnit;

/**
*
*/
abstract class DrupalUnitTestCase extends DrupalTestCase {
/** @var int Current drupal run time level */
protected $drupal_level;
Expand Down
4 changes: 3 additions & 1 deletion src/NT/Drupal/Testing/PHPUnit/drupal_web_test_case.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
<?php

namespace NT\Drupal\Testing\PHPUnit;

/**
*
*/
abstract class DrupalWebTestCase extends DrupalTestCase {

protected $prefix;
Expand Down
4 changes: 3 additions & 1 deletion src/NT/Drupal/Testing/PHPUnit/fixture_helper.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
<?php

namespace NT\Drupal\Testing\PHPUnit;

/**
*
*/
class fixture_helper {

protected static $instance;
Expand Down
4 changes: 3 additions & 1 deletion src/NT/Drupal/Testing/PHPUnit/upal.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
<?php

namespace NT\Drupal\Testing\PHPUnit;

/**
*
*/
class upal {

/*
Expand Down

0 comments on commit aa3b062

Please sign in to comment.