📄 emptaxtest.php
字号:
<?php// Call EmpTaxTest::main() if this source file is executed directly.if (!defined("PHPUnit_MAIN_METHOD")) { define("PHPUnit_MAIN_METHOD", "EmpTaxTest::main");}require_once "PHPUnit/Framework/TestCase.php";require_once "PHPUnit/Framework/TestSuite.php";require_once "testConf.php";require_once ROOT_PATH . '/lib/confs/Conf.php';require_once ROOT_PATH . '/lib/dao/DMLFunctions.php';require_once ROOT_PATH . '/lib/dao/SQLQBuilder.php';require_once ROOT_PATH . '/lib/common/CommonFunctions.php';require_once 'EmpTax.php';/** * Test class for EmpTax. * Generated by PHPUnit_Util_Skeleton on 2007-12-04 at 19:56:17. */class EmpTaxTest extends PHPUnit_Framework_TestCase { /** * Runs the test methods of this class. * * @access public * @static */ public static function main() { require_once "PHPUnit/TextUI/TestRunner.php"; $suite = new PHPUnit_Framework_TestSuite("EmpTaxTest"); $result = PHPUnit_TextUI_TestRunner::run($suite); } /** * Sets up the fixture, for example, open a network connection. * This method is called before a test is executed. * * @access protected */ protected function setUp() { } /** * Tears down the fixture, for example, close a network connection. * This method is called after a test is executed. * * @access protected */ protected function tearDown() { } /** * @todo Implement testGetEmployeeTaxInfo(). */ public function testGetEmployeeTaxInfo() { // Remove the following line when you implement this test. $this->markTestIncomplete( "This test has not been implemented yet." ); } /** * @todo Implement testUpdateEmpTax(). */ public function testUpdateEmpTax() { // Remove the following line when you implement this test. $this->markTestIncomplete( "This test has not been implemented yet." ); }}// Call EmpTaxTest::main() if this source file is executed directly.if (PHPUnit_MAIN_METHOD == "EmpTaxTest::main") { EmpTaxTest::main();}?>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -