• 软件测试技术
  • 软件测试博客
  • 软件测试视频
  • 开源软件测试技术
  • 软件测试论坛
  • 软件测试沙龙
  • 软件测试资料下载
  • 软件测试杂志
  • 软件测试人才招聘
    暂时没有公告

字号: | 推荐给好友 上一篇 | 下一篇

PHPUnit测试框架应用类及代码结构

发布: 2009-3-30 21:24 | 作者: 网络转载 | 来源: 测试时代采编 | 查看: 93次 | 进入软件测试论坛讨论

领测软件测试网 目的:

  支持各级别的代码自动测试

  使用:

  phpunit AllTests #全部测试

  phpunit V2007_AllTests #V2007项目测试

  phpunit V2007_Example_AllTests #V2007项目中Example模块测试

  实现:

  Tests

  ----| AllTests (All Test With test class: AllTests)

  ----| V2007 (A Project folder)

  --------| AllTests.php (Project Testsuit, With test class: V2007_AllTests)

  --------| Example.php (Module API Testcase, With test class: V2007_ExampleTest)

  --------| Example (A Module folder)

  ------------| AllTests.php (Model Testsuit, With test class: V2007_Example_AllTests)

  ------------| ArrayTest.php (Function Testcase, With test class V2007_Example_ArrayTest)

  文件及类的命名方式规范:

  1. TestCase 以"Test"结尾

  2. TestSuit 以"Tests"结尾

  3. 目录结构和类名根据逻辑测试结构而定,如需V2007项目的Example模块的Array类/函数测试用例,则文件置于V2007/Example/ArrayTest.php, 其类名为V2007_Examlpe_ArrayTest

  4. 每次测试以TestSuit进行,不支持单独运行TestCase测试

  代码示例:

/**
* AllTests.php
*/
if (!defined('PHPUnit_MAIN_METHOD')) {
  define('PHPUnit_MAIN_METHOD', 'AllTests::main');
}
//List your projects HERE
require_once 'V2007/AllTests.php';
class V2007_AllTests
{
  public static function main()
  {
    PHPUnit_TextUI_TestRunner::run(self::suite());
  }
  public static function suite()
  {
    $suite = new PHPUnit_Framework_TestSuite('V2007 rollenc.com');
    //Add your project tests HERE
    $suite->addTest(V2007_AllTests::suite());
    return $suite;
  }
}
if (PHPUnit_MAIN_METHOD == 'AllTests::main') {
  AllTests::main();
}

延伸阅读

文章来源于领测软件测试网 https://www.ltesting.net/

TAG: PHPUnit phpunit

21/212>

关于领测软件测试网 | 领测软件测试网合作伙伴 | 广告服务 | 投稿指南 | 联系我们 | 网站地图 | 友情链接
版权所有(C) 2003-2010 TestAge(领测软件测试网)|领测国际科技(北京)有限公司|软件测试工程师培训网 All Rights Reserved
北京市海淀区中关村南大街9号北京理工科技大厦1402室 京ICP备10010545号-5
技术支持和业务联系:info@testage.com.cn 电话:010-51297073

软件测试 | 领测国际ISTQBISTQB官网TMMiTMMi认证国际软件测试工程师认证领测软件测试网