1
0
Fork 0
mirror of synced 2024-07-05 14:40:42 +12:00
appwrite/tests/unit/Database/Validator/UIDTest.php

30 lines
634 B
PHP
Raw Normal View History

2020-07-08 21:11:12 +12:00
<?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);
}
}