blob: c47f8bc0582404166458d849261cf819890df80c [file] [log] [blame]
<?php
require_once dirname( __FILE__ ) . '/webdav_property_test.php';
class ezcWebdavSourcePropertyLinkTest extends ezcWebdavWebdavPropertyTestCase
{
public static function suite()
{
return new PHPUnit_Framework_TestSuite( __CLASS__ );
}
protected function setUp()
{
$this->className = 'ezcWebdavSourcePropertyLink';
$this->propertyName = 'link';
$this->defaultValues = array(
'src' => null,
'dst' => null,
);
$this->workingValues = array(
'src' => array(
null,
'',
'foobar',
),
'dst' => array(
null,
'',
'foobar',
),
);
$this->failingValues = array(
'src' => array(
23,
23.34,
true,
false,
new stdClass(),
array(),
),
'dst' => array(
23,
23.34,
true,
false,
new stdClass(),
array(),
),
);
}
}
?>