Exemplo n.º 1
0
 public function testSetBlog()
 {
     $blog = new Blog();
     $blog->setBlog('Set the blog entry here');
     $this->assertEquals('Set the blog entry here', $blog->getBlog());
     $this->assertEquals('Set the', $blog->getBlog(7));
 }