Initial commit - Last War messaging system

This commit is contained in:
2026-02-19 01:33:28 -06:00
commit 38a8447a64
2162 changed files with 216183 additions and 0 deletions

View File

@@ -0,0 +1,72 @@
<?php
/*
* This file is a part of the DiscordPHP project.
*
* Copyright (c) 2015-present David Cole <david.cole1340@gmail.com>
*
* This file is subject to the MIT license that is bundled
* with this source code in the LICENSE.md file.
*/
use PHPUnit\Framework\TestCase;
use function Discord\contains;
use function Discord\getColor;
use function Discord\poly_strlen;
final class FunctionsTest extends TestCase
{
public function containsProvider()
{
return [
[true, 'hello, world!', ['hello']],
[true, 'phpunit tests', ['p', 'u']],
[false, 'phpunit tests', ['a']],
];
}
/**
* @dataProvider containsProvider
*/
public function testContains($expected, $needle, $haystack)
{
$this->assertEquals($expected, contains($needle, $haystack));
}
public function colorProvider()
{
return [
[0xcd5c5c, 'indianred'],
[0x00bfff, 'deepskyblue'],
[0x00bfff, 0x00bfff],
[0, 0],
[0x00bfff, '0x00bfff'],
];
}
/**
* @dataProvider colorProvider
*/
public function testGetColor($expected, $color)
{
$this->assertEquals($expected, getColor($color));
}
public function strlenProvider()
{
return [
[5, 'abcde'],
[0, ''],
[1, ' '],
];
}
/**
* @dataProvider strlenProvider
*/
public function testPolyStrlen($expected, $string)
{
$this->assertEquals($expected, poly_strlen($string));
}
}