コード例 #1
0
ファイル: PropertyTest.php プロジェクト: shrink0r/php-schema
 public function testValidate()
 {
     $mockSchema = $this->getMockBuilder(SchemaInterface::class)->getMock();
     $property = new Property($mockSchema, 'testProperty', ['required' => true]);
     $result = $property->validate('foobar');
     $this->assertInstanceOf(Ok::class, $result);
 }