phpunit Drupal7

Posted qinqiu

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了phpunit Drupal7相关的知识,希望对你有一定的参考价值。

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

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-phpunit

以上是关于phpunit Drupal7的主要内容,如果未能解决你的问题,请参考以下文章