您的位置:软件测试 > 开源软件测试 > 开源测试管理工具 > Testlink
phpnow+testlink+mantis时的心得
作者:网络转载 发布时间:[ 2014/1/7 15:18:07 ] 推荐标签:mantis testlink

三.与缺陷管理工具mantis关联

首先安装mantis,我的版本是mantis 1.0.8

安装步骤如下:

将mantis 1.0.8.zip解压到上面所说的也是服务器的默认目录htdocs文件下,我解压完叫mantis,进入到:http://localhost/mantis/admin/install.php中,填好相应信息,

我安装的时候出现好多的sql建表语句,提示错误,将语句在mysql中执行即可

接下来修改配置文件:

可以在config_defaults_inc.php中修改数据库的相应信息,也可以新建一个文件config_inc.php内容如下:

<?php

       $g_hostname = 'localhost';

       $g_db_type = 'mysql';

       $g_database_name = 'bugtracker';

       $g_db_username = 'root';

       $g_db_password = '123456';

?>

如果没有config_inc.php文件则用config_defaults_inc.php文件中的相应信息,这里我只添加了数据库的信息,邮件设置未设置。

登陆时默认用户名密码是:administrator,root

四.整合mantis和testlink

修改tl/cfg下的mantis.cfg.php文件:

/** The DB host to use when connecting to the mantis db */
define('BUG_TRACK_DB_HOST', 'localhost');

/** The name of the database that contains the mantis tables */
define('BUG_TRACK_DB_NAME', 'bugtracker');

/** The DB type being used by mantis
values: mysql,mssql,postgres
*/
define('BUG_TRACK_DB_TYPE', 'mysql');

/** The DB password to use for connecting to the mantis db */
define('BUG_TRACK_DB_USER', 'root');
define('BUG_TRACK_DB_PASS', '123456');

修改tl文件夹下的config.inc.php文件,查找$g_interface_bugs = ‘no’;

为$g_interface_bugs = 'MANTIS';

整合后执行用例时会出现一列bug管理

点击蜘蛛图片会弹出管理页面,添加bug号关联

上一页12下一页
软件测试工具 | 联系我们 | 投诉建议 | 诚聘英才 | 申请使用列表 | 网站地图
沪ICP备07036474 2003-2017 版权所有 上海泽众软件科技有限公司 Shanghai ZeZhong Software Co.,Ltd