+ Move unit test from test directory to each module.

This commit is contained in:
zhouxin
2023-04-24 02:16:47 +00:00
parent 8b32e6592a
commit 4efea42989
1671 changed files with 83077 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
#!/usr/bin/env php
<?php
include dirname(__FILE__, 5) . "/test/lib/init.php";
/**
title=测试 adminModel::fetchAPI();
cid=1
pid=1
正确的API地址 >> 1
错误的API地址 >> 0
*/
global $tester;
$tester->loadModel('admin');
$realURL = 'https://www.zentao.net/publicclass.json';
$invalidURL = 'https://test.zentao.net/publicclass.json';
$result1 = (int)!empty($tester->admin->fetchAPI($realURL));
$result2 = (int)$tester->admin->fetchAPI($invalidURL);
r($result1) && p() && e('1'); // 正确的API地址
r($result2) && p() && e('0'); // 错误的API地址