19 lines
627 B
PHP
19 lines
627 B
PHP
<?php
|
||
|
||
namespace Tests\Feature;
|
||
|
||
use Illuminate\Foundation\Testing\RefreshDatabase;
|
||
use Tests\TestCase;
|
||
|
||
class AdminDashboardBillingWorkbenchShouldIncludeSubscriptionExpiryQuickLinksTest extends TestCase
|
||
{
|
||
use RefreshDatabase;
|
||
|
||
// 已存在同类用例:AdminDashboardSubscriptionExpiryQuickLinksShouldRenderTest
|
||
// 本文件属于重复覆盖,为降低测试维护成本,标记为 skipped。
|
||
public function test_skip_duplicate_coverage(): void
|
||
{
|
||
$this->markTestSkipped('Duplicate coverage: AdminDashboardSubscriptionExpiryQuickLinksShouldRenderTest already asserts the same links.');
|
||
}
|
||
}
|