Answers for "php unit testing laravel"

PHP
0

php unit testing laravel

<?php

namespace Tests\Unit;

use PHPUnit\Framework\TestCase;

class ExampleTest extends TestCase
{
    /**
     * A basic test example.
     *
     * @return void
     */
    public function test_basic_test()
    {
        $this->assertTrue(true);
    }
}
Posted by: Guest on March-31-2021

Browse Popular Code Answers by Language