REDROOM
PHP 8.2.31
Path:
Logout
Edit File
Size: 2.75 KB
Close
/opt/alt/php55/usr/share/pear/test/Validator/Symfony/Component/Validator/Tests/Mapping/Loader/LoaderChainTest.php
Text
Base64
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Validator\Tests\Mapping\Loader; use Symfony\Component\Validator\Mapping\ClassMetadata; use Symfony\Component\Validator\Mapping\Loader\LoaderChain; class LoaderChainTest extends \PHPUnit_Framework_TestCase { public function testAllLoadersAreCalled() { $metadata = new ClassMetadata('\stdClass'); $loader1 = $this->getMock('Symfony\Component\Validator\Mapping\Loader\LoaderInterface'); $loader1->expects($this->once()) ->method('loadClassMetadata') ->with($this->equalTo($metadata)); $loader2 = $this->getMock('Symfony\Component\Validator\Mapping\Loader\LoaderInterface'); $loader2->expects($this->once()) ->method('loadClassMetadata') ->with($this->equalTo($metadata)); $chain = new LoaderChain(array( $loader1, $loader2, )); $chain->loadClassMetadata($metadata); } public function testReturnsTrueIfAnyLoaderReturnedTrue() { $metadata = new ClassMetadata('\stdClass'); $loader1 = $this->getMock('Symfony\Component\Validator\Mapping\Loader\LoaderInterface'); $loader1->expects($this->any()) ->method('loadClassMetadata') ->will($this->returnValue(true)); $loader2 = $this->getMock('Symfony\Component\Validator\Mapping\Loader\LoaderInterface'); $loader2->expects($this->any()) ->method('loadClassMetadata') ->will($this->returnValue(false)); $chain = new LoaderChain(array( $loader1, $loader2, )); $this->assertTrue($chain->loadClassMetadata($metadata)); } public function testReturnsFalseIfNoLoaderReturnedTrue() { $metadata = new ClassMetadata('\stdClass'); $loader1 = $this->getMock('Symfony\Component\Validator\Mapping\Loader\LoaderInterface'); $loader1->expects($this->any()) ->method('loadClassMetadata') ->will($this->returnValue(false)); $loader2 = $this->getMock('Symfony\Component\Validator\Mapping\Loader\LoaderInterface'); $loader2->expects($this->any()) ->method('loadClassMetadata') ->will($this->returnValue(false)); $chain = new LoaderChain(array( $loader1, $loader2, )); $this->assertFalse($chain->loadClassMetadata($metadata)); } }
Save
Close
Exit & Reset
Text mode: syntax highlighting auto-detects file type.
Directory Contents
Dirs: 0 × Files: 13
Delete Selected
Select All
Select None
Sort:
Name
Size
Modified
Enable drag-to-move
Name
Size
Perms
Modified
Actions
AbstractMethodStaticLoader.php
245 B
lrw-r--r--
2019-12-18 11:24:08
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
AnnotationLoaderTest.php
6.77 KB
lrw-r--r--
2019-12-18 11:24:08
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
constraint-mapping-non-strings.xml
732 B
lrw-r--r--
2019-12-18 11:24:08
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
constraint-mapping.xml
3.20 KB
lrw-r--r--
2019-12-18 11:24:08
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
constraint-mapping.yml
1.44 KB
lrw-r--r--
2019-12-18 11:24:08
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
empty-mapping.yml
0 B
lrw-r--r--
2019-12-18 11:24:08
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
FilesLoaderTest.php
1.56 KB
lrw-r--r--
2019-12-18 11:24:08
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
LoaderChainTest.php
2.75 KB
lrw-r--r--
2019-12-18 11:24:08
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
nonvalid-mapping.yml
4 B
lrw-r--r--
2019-12-18 11:24:08
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
StaticMethodLoaderTest.php
3.78 KB
lrw-r--r--
2019-12-18 11:24:08
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
withdoctype.xml
414 B
lrw-r--r--
2019-12-18 11:24:08
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
XmlFileLoaderTest.php
4.88 KB
lrw-r--r--
2019-12-18 11:24:08
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
YamlFileLoaderTest.php
4.40 KB
lrw-r--r--
2019-12-18 11:24:08
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
Zip Selected
If ZipArchive is unavailable, a
.tar
will be created (no compression).