Example #1
0
 /**
  * @inheritdoc
  */
 public function setUp()
 {
     parent::setUp();
     $this->task = new CallbackTask(function () {
         return "hello world";
     });
 }
 /**
  * @inheritdoc
  */
 public function setUp()
 {
     parent::setUp();
     $this->task = new ProcessCallbackTask(function () {
         return;
     });
 }
Example #3
0
 /**
  * @inheritdoc
  */
 public function setUp()
 {
     parent::setUp();
     $this->rules = new InMemoryRules();
 }
Example #4
0
 /**
  * @inheritdoc
  */
 public function setUp()
 {
     parent::setUp();
     $this->manager = new ShellManager();
 }
Example #5
0
 /**
  * @inheritdoc
  */
 public function setUp()
 {
     parent::setUp();
     $this->shell = new BashShell();
 }
Example #6
0
 /**
  * @inheritdoc
  */
 public function setUp()
 {
     parent::setUp();
     $this->rule = new InMemoryProfile();
 }
Example #7
0
 /**
  * @inheritdoc
  */
 public function setUp()
 {
     parent::setUp();
     $this->handler = new SimpleHandler();
 }
Example #8
0
 /**
  * @inheritdoc
  */
 public function setUp()
 {
     parent::setUp();
     $this->handler = new CallbackHandler();
 }
Example #9
0
 /**
  * @inheritdoc
  */
 public function setUp()
 {
     parent::setUp();
     $this->manager = new ProcessManager();
 }
 /**
  * @inheritdoc
  */
 public function setUp()
 {
     parent::setUp();
     $this->manager = new SynchronousManager();
 }