Files
saasshop/tests/Feature/AdminDashboardPaidNoReceiptGovernanceHelpShouldRemainConsistentTest.php

35 lines
1.0 KiB
PHP

<?php
namespace Tests\Feature;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Tests\TestCase;
class AdminDashboardPaidNoReceiptGovernanceHelpShouldRemainConsistentTest extends TestCase
{
use RefreshDatabase;
protected function loginAsPlatformAdmin(): void
{
$this->seed();
$this->post('/admin/login', [
'email' => 'platform.admin@demo.local',
'password' => 'Platform@123456',
])->assertRedirect('/admin');
}
public function test_dashboard_paid_no_receipt_governance_help_should_remain_consistent(): void
{
$this->loginAsPlatformAdmin();
$res = $this->get('/admin');
$res->assertOk();
$html = (string) $res->getContent();
$this->assertStringContainsString('已付无回执=已支付但缺 payment_receipts', $html);
$this->assertStringContainsString('已付无回执', $html);
$this->assertStringContainsString('data-role="dashboard-po-quicklink-paid-no-receipt"', $html);
}
}