blob: 9572127bbbf64f7c6b341328401b9892f9f48760 [file] [log] [blame]
<?php
/**
* File containing the ezcWebdavPropPatchRequestTest class.
*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*
* @package Webdav
* @subpackage Tests
* @version //autogentag//
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License, Version 2.0
*/
/**
* Reqiuire base test
*/
require_once 'request_test.php';
/**
* Test case for the ezcWebdavPropPatchRequest class.
*
* @package Webdav
* @subpackage Tests
* @version //autogentag//
*/
class ezcWebdavPropPatchRequestTest extends ezcWebdavRequestTestCase
{
public static function suite()
{
return new PHPUnit_Framework_TestSuite( __CLASS__ );
}
protected function setUp()
{
$this->className = 'ezcWebdavPropPatchRequest';
$this->constructorArguments = array(
'/foo', '/bar'
);
$this->defaultValues = array(
'updates' => new ezcWebdavFlaggedPropertyStorage(),
);
$this->workingValues = array(
'updates' => array(
new ezcWebdavFlaggedPropertyStorage(),
),
);
$this->failingValues = array(
'updates' => array(
23,
23.34,
'foo bar',
array( 23, 42 ),
new stdClass(),
),
);
}
}
?>