Example #1
0
 public function testArea()
 {
     $this->_page->area('foo')->push('bar1');
     $this->assertEquals(['bar1'], $this->_page->area('foo')->toArray());
     $this->_page->area('foo')->push('bar2');
     $this->assertEquals(['bar1', 'bar2'], $this->_page->area('foo')->toArray());
 }