0
0
Fork 0
mirror of https://github.com/salesagility/SuiteCRM.git synced 2025-02-21 20:56:08 +00:00
salesagility_SuiteCRM/tests/unit/phpunit/include/utils/zipUtilsTest.php

27 lines
602 B
PHP

<?php
use SuiteCRM\Test\SuitePHPUnitFrameworkTestCase;
require_once 'include/utils/zip_utils.php';
class zip_utilsTest extends SuitePHPUnitFrameworkTestCase
{
public function testunzip()
{
$this->markTestIncomplete('Can Not be implemented');
}
public function testunzip_file()
{
$this->markTestIncomplete('Can Not be implemented');
}
public function testzip_dir()
{
$this->markTestIncomplete('Can Not be implemented');
}
public function testzip_files_list()
{
$this->markTestIncomplete('Can Not be implemented');
}
}