| 12345678910111213141516171819 |
- <?php
- namespace Tests\Unit;
- use Tests\TestCase;
- class QuestionTemQualityReviewBladeTest extends TestCase
- {
- public function test_blade_file_compiles_to_php_without_syntax_error(): void
- {
- $path = resource_path('views/filament/pages/question-tem-quality-review.blade.php');
- $this->assertFileExists($path);
- $compiler = app('blade.compiler');
- $compiled = $compiler->compileString((string) file_get_contents($path));
- $this->assertNotSame('', $compiled);
- }
- }
|