1
0
Fork 0
mirror of synced 2024-07-05 22:51:24 +12:00
appwrite/tests/unit/Database/Validator/UIDTest.php
2020-07-08 12:11:12 +03:00

30 lines
634 B
PHP

<?php
namespace Appwrite\Tests;
use Appwrite\Database\Validator\UID;
use PHPUnit\Framework\TestCase;
class UIDTest extends TestCase
{
/**
* @var UID
*/
protected $object = null;
public function setUp()
{
$this->object = new UID();
}
public function tearDown()
{
}
public function testValues()
{
$this->assertEquals($this->object->isValid('5f058a8925807'), true);
$this->assertEquals($this->object->isValid('5f058a89258075f058a89258075f058t'), true);
$this->assertEquals($this->object->isValid('5f058a89258075f058a89258075f058tx'), false);
}
}