예제 #1
0
 public function testIsEqual()
 {
     $model = new Kwf_Model_Service(array('client' => $this->_client));
     $modelEqual = new Kwf_Model_Service(array('client' => $this->_client));
     $modelNotEqual = new Kwf_Model_Service(array('serverUrl' => 'http://service.kwf-projekte.vivid'));
     $this->assertEquals(true, $model->isEqual($modelEqual));
     $this->assertEquals(false, $model->isEqual($modelNotEqual));
 }