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.
*/
class Issue2137Test extends PHPUnit\Framework\TestCase
{
/**
* @dataProvider provideBrandService
*
* @throws Exception
* @throws \PHPUnit\Framework\ExpectationFailedException
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
*/
public function testBrandService($provided, $expected): void
{
$this->assertSame($provided, $expected);
}
public function provideBrandService()
{
return [
//[true, true]
new stdClass, // not valid
];
}
/**
* @dataProvider provideBrandService
*
* @throws Exception
* @throws \PHPUnit\Framework\ExpectationFailedException
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
*/
public function testSomethingElseInvalid($provided, $expected): void
{
$this->assertSame($provided, $expected);
}
}