예제 #1
0
파일: BuilderTest.php 프로젝트: seytar/psx
 public function testInteger()
 {
     $builder = new Builder('foo');
     $builder->integer('foo');
     $property = $builder->getProperty();
     $this->assertInstanceOf('PSX\\Data\\Schema\\Property\\IntegerType', $property->get('foo'));
 }