Remove unneeded TextTest class

Bu işleme şunda yer alıyor:
Philipp Holzer 2019-10-23 02:50:09 +02:00
ebeveyn edf006905b
işleme f9f2c9e4b2
Veri tabanında bu imza için bilinen anahtar bulunamadı
GPG Anahtar Kimliği: D8365C3D36B77D90
1 değiştirilmiş dosya ile 0 ekleme ve 26 silme

Dosyayı Görüntüle

@ -1,26 +0,0 @@
<?php
/**
* TextTest class.
*/
namespace Friendica\Test;
use Friendica\Model\Group;
use PHPUnit\Framework\TestCase;
/**
* Tests for text functions.
*/
class TextTest extends TestCase
{
/**
* test hex2bin and reverse
*/
public function testHex2Bin()
{
$this->assertEquals(-3, hex2bin(bin2hex(-3)));
$this->assertEquals(0, hex2bin(bin2hex(0)));
$this->assertEquals(12, hex2bin(bin2hex(12)));
$this->assertEquals(PHP_INT_MAX, hex2bin(bin2hex(PHP_INT_MAX)));
}
}