/** * Use to skip your test on windows machines * * @return null */ protected function skipOnWindows() { // not testable on Windows machines if ($this->service->getOsIdentifier() === 'WIN') { $this->markTestSkipped('Not testable on Windows machines'); } }
/** * Default constructor * * @param \AppserverIo\Appserver\Core\InitialContext $initialContext The initial context instance */ public function __construct(InitialContext $initialContext) { parent::__construct($initialContext); $this->init(); }