phpunit Drupal7

http://patshaughnessy.net/2008/12/12/writing-your-first-phpunit-test-in-drupalphp

phpunit TddTests modules/tdd/TddTests.php 
<?php
require_once './includes/bootstrap.inc';
drupal_bootstrap(DRUPAL_BOOTSTRAP_FULL);
class TddTests extends PHPUnit_Framework_TestCase
{
  public function test_tdd_help()
  {
    $this->assertEquals(
      tdd_help('admin/content/tdd'), "<p>Help for TDD module.</p>");
  }
}
?>https://tlattimore.com/blog/using-phpunit-with-drupal-7/https://drupal.stackexchange.com/questions/216827/debugging-a-custom-module-with-xdebug-and-phpunithttps://drupal.stackexchange.com/questions/129674/how-to-run-phpunit-tests
相關文章
相關標籤/搜索