protected function setUp()
 {
     parent::setUp();
     $this->stack = new Stack();
     $this->stack->push("element");
     $this->stack->push("element2");
     $this->stack->push("element3");
 }
Ejemplo n.º 2
0
 protected function tearDown()
 {
     parent::tearDown();
     $this->myResource = null;
 }
Ejemplo n.º 3
0
 protected function setUp()
 {
     parent::setUp();
     $this->stack = new Stack();
 }