File "view.test.stub"

Full Path: /home/pulsehostuk9/public_html/invoicer.pulsehost.co.uk/vendor/laravel/framework/src/Illuminate/Foundation/Console/stubs/view.test.stub
File size: 314 bytes
MIME-type: text/x-php
Charset: utf-8

<?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('');
    }
}