laravel/framework

View on GitHub
src/Illuminate/Foundation/Console/stubs/view.test.stub

Summary

Maintainability
Test Coverage
<?php

namespace {{ namespace }};

use Tests\TestCase;

class {{ class }} extends TestCase
{
    /**
     * A basic view test example.
     */
    public function test_it_can_render(): void
    {
        $contents = $this->view('{{ name }}', [
            //
        ]);

        $contents->assertSee('');
    }
}