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