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