Ejemplo n.º 1
0
 /**
  * Tests the getters and setters of the model
  * @test
  */
 public function setGetTest()
 {
     $this->_model->setLivemode('live')->setChecksum('foobar');
     $this->assertEquals($this->_model->getLivemode(), 'live');
     $this->assertEquals($this->_model->getChecksum(), 'foobar');
 }