23 lines
481 B
PHP
Executable File
23 lines
481 B
PHP
Executable File
#!/usr/bin/env php
|
|
<?php
|
|
declare(strict_types=1);
|
|
/**
|
|
|
|
title=测试 tutorialModel->getExecutionStoryPairs();
|
|
cid=1
|
|
|
|
- 测试是否能拿到数据属性3 @Test active story
|
|
|
|
*/
|
|
|
|
include dirname(__FILE__, 5) . '/test/lib/init.php';
|
|
include dirname(__FILE__, 2) . '/lib/tutorial.unittest.class.php';
|
|
|
|
zenData('user')->gen(5);
|
|
|
|
su('admin');
|
|
|
|
$tutorial = new tutorialTest();
|
|
|
|
r($tutorial->getExecutionStoryPairsTest()) && p('3') && e('Test active story'); //测试是否能拿到数据
|