Browse Source

Trying to revert test so Travis CI completes

Stephen Ficklin 7 years ago
parent
commit
db2f26db96
1 changed files with 0 additions and 13 deletions
  1. 0 13
      tests/TripalEntityCollection.test

+ 0 - 13
tests/TripalEntityCollection.test

@@ -1,24 +1,11 @@
 <?php
 
-// Bootstrap Drupal.
-$_SERVER['HTTP_HOST'] = 'localhost';
-$_SERVER['SCRIPT_NAME'] = '/index.php';
-$_SERVER['REMOTE_ADDR'] = '127.0.0.1';
-$_SERVER['REQUEST_METHOD'] = 'GET';
-$_SERVER['SERVER_NAME'] = NULL;
-$_SERVER['SERVER_SOFTWARE'] = NULL;
-$_SERVER['HTTP_USER_AGENT'] = NULL;
-define('DRUPAL_ROOT', '/var/www/html');
-require_once DRUPAL_ROOT . '/includes/bootstrap.inc';
-drupal_bootstrap(DRUPAL_BOOTSTRAP_FULL);
-
 use PHPUnit\Framework\TestCase;
 
 class TripalEntityCollectionTest extends TestCase {
 
   protected $collection = NULL;
 
-
   public function setUp() {
     $details = ['uid' => 1, 'collection_name' => "test_collection_name"];
     $collection = new TripalEntityCollection();