Пример #1
0
 public function testIsPrivate()
 {
     $content = new Content();
     $this->assertFalse($content->isPrivate());
     $nestedValue = new NestedValue();
     $content->setNestedIn($nestedValue);
     $this->assertTrue($content->isPrivate());
 }