三.與缺陷管理工具mantis關聯(lián)
首先安裝mantis,我的版本是mantis 1.0.8
安裝步驟如下:
將mantis 1.0.8.zip解壓到上面所說的也是服務器的默認目錄htdocs文件下,我解壓完叫mantis,進入到:http://localhost/mantis/admin/install.php中,填好相應信息,
我安裝的時候出現(xiàn)好多的sql建表語句,提示錯誤,將語句在mysql中執(zhí)行即可
接下來修改配置文件:
可以在config_defaults_inc.php中修改數(shù)據(jù)庫的相應信息,也可以新建一個文件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文件中的相應信息,這里我只添加了數(shù)據(jù)庫的信息,郵件設置未設置。
登陸時默認用戶名密碼是: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';
整合后執(zhí)行用例時會出現(xiàn)一列bug管理
點擊蜘蛛圖片會彈出管理頁面,添加bug號關聯(lián)