QuestionTemQualityReviewBladeTest.php 509 B

12345678910111213141516171819
  1. <?php
  2. namespace Tests\Unit;
  3. use Tests\TestCase;
  4. class QuestionTemQualityReviewBladeTest extends TestCase
  5. {
  6. public function test_blade_file_compiles_to_php_without_syntax_error(): void
  7. {
  8. $path = resource_path('views/filament/pages/question-tem-quality-review.blade.php');
  9. $this->assertFileExists($path);
  10. $compiler = app('blade.compiler');
  11. $compiled = $compiler->compileString((string) file_get_contents($path));
  12. $this->assertNotSame('', $compiled);
  13. }
  14. }