Files
EasySoft-ZenTaoPMS/module/screen/test/model/processxlabel.php
T
2023-12-04 15:25:31 +08:00

25 lines
777 B
PHP

#!/usr/bin/env php
<?php
include dirname(__FILE__, 5) . '/test/lib/init.php';
include dirname(__FILE__, 2) . '/screen.class.php';
/**
title=测试 screenModel->getByID();
cid=1
pid=1
测试是否能正常处理横坐标为日期,类型为日期,对象类型为bug的情况。 >> 2023-11-03,2023-11-07,2023-11-13,2023-11-15
*/
$screen = new screenTest();
$xlabel = array('2023-11-03', '2023-11-07', '2023-11-13', '2023-11-15');
$type = 'date';
$object = 'bug';
$field = '日期';
$result = $screen->processXLabelTest($xlabel, $type, $object, $field);
r($result) && p('2023-11-03,2023-11-07,2023-11-13,2023-11-15') && e('2023-11-03,2023-11-07,2023-11-13,2023-11-15'); //测试是否能正常处理横坐标为日期,类型为日期,对象类型为bug的情况。