Billie/tests/CheckSelectHtml.php

25 lines
474 B
PHP
Raw Normal View History

2025-05-06 02:47:26 +00:00
<?php
namespace Tests;
use PHPUnit\Framework\TestCase;
use Illuminate\Foundation\Testing\RefreshDatabase;
class CheckSelectHtml extends TestCase
{
public function testFileRead()
{
// Start output buffering
ob_start();
// Include the PHP file
include __DIR__ . '/../storage/app/private/testingunit/testingunit.php';
// Get the output and end output buffering
$output = ob_get_clean();
}
}
?>