Files
saasshop/tests/Feature/AdminDashboardBillingWorkbenchShouldIncludeSubscriptionExpiryQuickLinksTest.php

19 lines
627 B
PHP
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?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.');
}
}