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