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.
*/
use PHPUnit\Framework\TestCase;
class MultiDependencyTest extends TestCase
{
public function testOne()
{
$this->assertTrue(true);
return 'foo';
}
public function testTwo()
{
$this->assertTrue(true);
return 'bar';
}
/**
* @depends testOne
* @depends testTwo
*/
public function testThree($a, $b): void
{
$this->assertEquals('foo', $a);
$this->assertEquals('bar', $b);
}
/**
* @depends MultiDependencyTest::testThree
*/
public function testFour()
{
$this->assertTrue(true);
}
public function testFive()
{
$this->assertTrue(true);
}
}