assertNotNull($platform); // Test platform name $this->assertNotEmpty($platform->getName()); } else { $this->markTestSkipped('Platform class not available in this context'); } } /** * Test Joomla platform specifics - always skipped for testing */ public function testJoomlaPlatform() { $this->markTestSkipped('Skipping Joomla-specific test in standalone test environment'); } /** * Test WordPress platform specifics - always skipped for testing */ public function testWordPressPlatform() { $this->markTestSkipped('Skipping WordPress-specific test in standalone test environment'); } }