- Delete unuse method and case.

This commit is contained in:
tianshujie
2023-09-08 14:36:24 +08:00
parent 0b4ab39a30
commit d4e1a1c5be
3 changed files with 0 additions and 105 deletions
-35
View File
@@ -1603,41 +1603,6 @@ class executionTest
}
}
/**
* function getTeams2Import test by execution
*
* @param string $account
* @param string $currentExecution
* @param string $count
* @access public
* @return array
*/
public function getTeams2ImportTest($account, $currentExecution, $count)
{
$object = $this->executionModel->getTeams2Import($account, $currentExecution);
if(dao::isError())
{
$error = dao::getError();
return $error;
}
elseif($count == "1")
{
return count($object);
}
else
{
if(empty($object))
{
return '无数据';
}
else
{
return $object;
}
}
}
/**
* function getMembers2Import test by execution
*