Komang_Gede_Narariya_Suputra/iClOP-V2/tests/CheckDeleteHtmlGuru.php
2024-12-31 11:25:09 +07:00

25 lines
478 B
PHP

<?php
namespace Tests;
use PHPUnit\Framework\TestCase;
use Illuminate\Foundation\Testing\RefreshDatabase;
class CheckDeleteHtmlGuru 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();
}
}
?>