*/ interface TestRunnerFeatureInterface extends PhpSerializable { /** * Get feature identifier * @return string */ public function getId(); /** * Get list of active plugins * @return string[] */ public function getPluginsIds(); /** * If delivery enabled for new created delivery * @return bool */ public function isEnabledByDefault(); /** * User-friendly localized label for the feature * @return string */ public function getLabel(); /** * User-friendly localized description for the feature * @return mixed */ public function getDescription(); /** * Is feature activated * @return boolean */ public function isActive(); /** * @param boolean $active */ public function setActive($active); }