Пример #1
0
 public function testAkismetEmptyCommentAuthorInformation()
 {
     $akismet = new Akismet();
     $akismet->setCommentType('');
     $akismet->setCommentAuthor('');
     $akismet->setCommentAuthorEmail('');
     $akismet->setCommentContent('');
     $this->assertSame($akismet->getCommentType(), '');
     $this->assertSame($akismet->getCommentAuthor(), '');
     $this->assertSame($akismet->getCommentAuthorEmail(), '');
     $this->assertSame($akismet->getCommentContent(), '');
 }