17 lines
456 B
PHP
17 lines
456 B
PHP
<?php
|
|
|
|
namespace MintyPHP\Tests\Architecture;
|
|
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
final class DetailValidationAssetContractTest extends TestCase
|
|
{
|
|
use ProjectFileAssertionSupport;
|
|
|
|
public function testDefaultStyleGroupIncludesValidationSummaryComponentCss(): void
|
|
{
|
|
$content = $this->readProjectFile('config/assets.php');
|
|
$this->assertStringContainsString("'css/components/app-details-validation-summary.css'", $content);
|
|
}
|
|
}
|