예제 #1
0
 public function testget_summary_text()
 {
     error_reporting(E_ERROR | E_PARSE);
     $opportunity = new Opportunity();
     //test without setting name
     $this->assertEquals(null, $opportunity->get_summary_text());
     //test with name set
     $opportunity->name = 'test';
     $this->assertEquals('test', $opportunity->get_summary_text());
 }