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