Ejemplo n.º 1
0
 /**
  * Tests for success at creating the object.
  */
 public function testCreate()
 {
     $test_title = 'test title';
     $t = new Episode();
     $t->setTitle($test_title);
     $this->assertTrue($t instanceof Episode);
     $this->assertEquals($t->__toString(), $test_title);
 }