Izveidot aplikāciju, kura ik pēc noteikta intervāla (60 sekundes) veic ierakstu datubāzē izmantojot Laravel freimworka iebūvēto funkcionalitāti.
<?php
/*
* This file is part of PHPUnit.
*
* (c) Sebastian Bergmann <sebastian@phpunit.de>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace PHPUnit\Framework\Constraint;
use PHPUnit\Framework\ExpectationFailedException;
use PHPUnit\Framework\TestFailure;
class ClassHasStaticAttributeTest extends ConstraintTestCase
{
public function testConstraintClassHasStaticAttribute(): void
{
$constraint = new ClassHasStaticAttribute('privateStaticAttribute');
$this->assertTrue($constraint->evaluate(\ClassWithNonPublicAttributes::class, '', true));
$this->assertFalse($constraint->evaluate(\stdClass::class, '', true));
$this->assertEquals('has static attribute "privateStaticAttribute"', $constraint->toString());
$this->assertCount(1, $constraint);
try {
$constraint->evaluate(\stdClass::class);
} catch (ExpectationFailedException $e) {
$this->assertEquals(
<<<EOF
Failed asserting that class "stdClass" has static attribute "privateStaticAttribute".
EOF
,
TestFailure::exceptionToString($e)
);
return;
}
$this->fail();
}
public function testConstraintClassHasStaticAttribute2(): void
{
$constraint = new ClassHasStaticAttribute('foo');
try {
$constraint->evaluate(\stdClass::class, 'custom message');
} catch (ExpectationFailedException $e) {
$this->assertEquals(
<<<EOF
custom message
Failed asserting that class "stdClass" has static attribute "foo".
EOF
,
TestFailure::exceptionToString($e)
);
return;
}
$this->fail();
}
}