* */ namespace Combodo\iTop\Test\UnitTest\ReleaseChecklist; use Combodo\iTop\Test\UnitTest\ItopTestCase; use iTopDesignFormat; /** * Class iTopDesignFormatChecklistTest * * @covers iTopDesignFormat */ class SetupCssIntegrityChecklistTest extends ItopTestCase { public function testSetupCssIntegrity() { $sSetupCssPath = APPROOT.'css/setup.css'; $sSetupCssContent = file_get_contents($sSetupCssPath); $this->assertGreaterThan(4000, strlen($sSetupCssContent), "Test if the resulting file $sSetupCssPath is long enough, the value is totally arbitrary (at the time of the writing the file is 5660o long"); } }