PHP Classes

File: tests/FunctionsArrayStringTest.php

Recommend this page to a friend!
  Classes of Rodolfo Berrios Arce   Parameter   tests/FunctionsArrayStringTest.php   Download  
File: tests/FunctionsArrayStringTest.php
Role: Class source
Content type: text/plain
Description: Class source
Class: Parameter
Validate function parameters with PHP attributes
Author: By
Last change:
Date: 16 days ago
Size: 786 bytes
 

Contents

Class file image Download
<?php

/*
 * This file is part of Chevere.
 *
 * (c) Rodolfo Berrios <[email protected]>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

declare(strict_types=1);

namespace
Chevere\Tests;

use
PHPUnit\Framework\TestCase;
use function
Chevere\Parameter\arrayp;
use function
Chevere\Parameter\string;

final class
FunctionsArrayStringTest extends TestCase
{
    public function
testArraypString(): void
   
{
       
$string = string();
       
$parameter = arrayp(a: $string);
       
$this->assertCount(1, $parameter->parameters());
       
$this->assertSame($string, $parameter->parameters()->get('a'));
       
$this->assertTrue($parameter->parameters()->requiredKeys()->contains('a'));
    }
}