[2.0] DDC-484 - Fix reference to Doctrine\ORM\ORMException in ProxyException, added two unit-tests for missing tests of ProxyException throws
This commit is contained in:
parent
c9de54b4a2
commit
5b10b7098f
2 changed files with 41 additions and 1 deletions
|
@ -1,8 +1,36 @@
|
|||
<?php
|
||||
/*
|
||||
* $Id$
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
||||
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
||||
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
||||
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
||||
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
||||
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
||||
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
||||
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||||
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*
|
||||
* This software consists of voluntary contributions made by many individuals
|
||||
* and is licensed under the LGPL. For more information, see
|
||||
* <http://www.doctrine-project.org>.
|
||||
*/
|
||||
|
||||
namespace Doctrine\ORM\Proxy;
|
||||
|
||||
class ProxyException extends Doctrine\ORM\ORMException {
|
||||
/**
|
||||
* ORM Proxy Exception
|
||||
*
|
||||
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
|
||||
* @link www.doctrine-project.com
|
||||
* @since 1.0
|
||||
* @version $Revision$
|
||||
* @author Benjamin Eberlei <kontakt@beberlei.de>
|
||||
*/
|
||||
class ProxyException extends \Doctrine\ORM\ORMException {
|
||||
|
||||
public static function proxyDirectoryRequired() {
|
||||
return new self("You must configure a proxy directory. See docs for details");
|
||||
|
|
|
@ -141,6 +141,18 @@ class ProxyClassGeneratorTest extends \Doctrine\Tests\OrmTestCase
|
|||
|
||||
$this->assertEquals(1, substr_count($classCode, 'function __sleep'));
|
||||
}
|
||||
|
||||
public function testNoConfigDir_ThrowsException()
|
||||
{
|
||||
$this->setExpectedException('Doctrine\ORM\Proxy\ProxyException');
|
||||
new ProxyFactory($this->_getTestEntityManager(), null, null);
|
||||
}
|
||||
|
||||
public function testNoNamespace_ThrowsException()
|
||||
{
|
||||
$this->setExpectedException('Doctrine\ORM\Proxy\ProxyException');
|
||||
new ProxyFactory($this->_getTestEntityManager(), __DIR__ . '/generated', null);
|
||||
}
|
||||
|
||||
protected function _getMockPersister()
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue