コード例 #1
0
ファイル: ContentTest.php プロジェクト: leonverschuren/Cms
 public function testIndexable()
 {
     $expected = true;
     $content = new Content();
     $content->setIndexable($expected);
     $actual = $content->getIndexable();
     $this->assertSame($expected, $actual);
     $this->assertTrue($content->isIndexable());
 }