⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 runtests2.php

📁 一个基于web的开源项目管理工具
💻 PHP
字号:
<?php // -*- mode: sgml-html; mmm-classes: html-php -*-include("phpunit_test.php");// above set $suite to self-test suite$title = 'PhpUnit test run, different output format';?>  <html>    <head>      <title><?php echo $title; ?></title>      <STYLE TYPE="text/css">	<?php	include ("stylesheet.css");	?>      </STYLE>    </head>    <body>      <h1><?php echo $title; ?></h1>      <p>	This page runs all the phpUnit self-tests, and uses the	PrettyTestResult subclass of TestResult to produce nice HTML output.      </p>      <p>	Unlike typical test run, <strong>expect many test cases to	  fail</strong>.  Exactly those with <code>pass</code> in their name	should succeed.      </p>      <p>	<?php	if (isset($only)) {	$suite = new TestSuite($only);	}	$result = new PrettyTestResult;	$suite->run($result);	$result->report();	?>    </body>  </html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -