- Fixed: Removed orphan test case.
# Seemed to be a relict from the design phase.


git-svn-id: https://svn.apache.org/repos/asf/incubator/zetacomponents/trunk@1035561 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/Webdav/tests/lock_property_lockinfo_test.php b/Webdav/tests/lock_property_lockinfo_test.php
deleted file mode 100644
index db8ee65..0000000
--- a/Webdav/tests/lock_property_lockinfo_test.php
+++ /dev/null
@@ -1,54 +0,0 @@
-<?php
-
-require_once dirname( __FILE__ ) . '/webdav_property_test.php';
-
-class ezcWebdavLockInfoPropertyTest extends ezcWebdavWebdavPropertyTestCase
-{
-    public static function suite()
-    {
-		return new PHPUnit_Framework_TestSuite( __CLASS__ );
-    }
-
-    protected function setUp()
-    {
-        $this->className = 'ezcWebdavLockInfoProperty';
-        $this->propertyName = 'lockinfo';
-        $this->namespace = ezcWebdavLockInfoProperty::NAMESPACE;
-        $this->defaultValues = array(
-            'tokenInfo' => new ArrayObject(),
-            'null' => false,
-        );
-        $this->workingValues = array(
-            'tokenInfo' => array(
-                new ArrayObject( array( 23, 42 ) ),
-                new ArrayObject( array( 'foo', 'bar' ) ),
-            ),
-            'null' => array(
-                true,
-                false,
-            ),
-        );
-        $this->failingValues = array(
-            'tokenInfo' => array(
-                null,
-                new stdClass(),
-                array(),
-                true,
-                false,
-                23,
-                42.23,
-                'foo'
-            ),
-            'null' => array(
-                null,
-                new stdClass(),
-                array(),
-                23,
-                42.23,
-                'foo'
-            ),
-        );
-    }
-}
-
-?>