Beispiel #1
0
 public function testGetSchemaValue()
 {
     $propertyName = 'name';
     $name = 'Author';
     $schema = new Schema('Book');
     $schema->addProperty($propertyName, $name);
     $this->expectOutputString($name);
     $schema->outputProperty($propertyName);
 }