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的主要内容,如果未能解决你的问题,请参考以下文章

如何在Drupal7中用代码批量创建节点评论和分类

markdown [代码覆盖率Phpunit]安装Xdebug并使用Phpunit运行代码覆盖率#xdebug #phpunit #code #coverage

Drupal7 查看多语言问题

代码覆盖 phpunit 测试问题

如何用PHPUnit生成代码覆盖率报告

PhpStorm 配置 PHPUnit