Stubs for the Kolab tests.
authorGunnar Wrobel <p@rdus.de>
Thu, 13 Jan 2011 15:25:11 +0000 (16:25 +0100)
committerGunnar Wrobel <p@rdus.de>
Thu, 13 Jan 2011 15:25:11 +0000 (16:25 +0100)
framework/Share/test/Horde/Share/Kolab/MockTest.php [new file with mode: 0644]
framework/Share/test/Horde/Share/Kolab/UnitTest.php [new file with mode: 0644]

diff --git a/framework/Share/test/Horde/Share/Kolab/MockTest.php b/framework/Share/test/Horde/Share/Kolab/MockTest.php
new file mode 100644 (file)
index 0000000..80da0ce
--- /dev/null
@@ -0,0 +1,44 @@
+<?php
+/**
+ * Integration test for the Kolab driver based on the in-memory mock driver.
+ *
+ * PHP version 5
+ *
+ * @category   Horde
+ * @package    Share
+ * @subpackage UnitTests
+ * @author     Gunnar Wrobel <wrobel@pardus.de>
+ * @license    http://www.fsf.org/copyleft/lgpl.html LGPL
+ * @link       http://pear.horde.org/index.php?package=Share
+ */
+
+/**
+ * Prepare the test setup.
+ */
+require_once dirname(__FILE__) . '/../Base.php';
+
+/**
+ * Integration test for the Kolab driver based on the in-memory mock driver.
+ *
+ * Copyright 2011 The Horde Project (http://www.horde.org/)
+ *
+ * See the enclosed file COPYING for license information (LGPL). If you
+ * did not receive this file, see http://www.fsf.org/copyleft/lgpl.html.
+ *
+ * @category   Horde
+ * @package    Share
+ * @subpackage UnitTests
+ * @author     Gunnar Wrobel <wrobel@pardus.de>
+ * @license    http://www.fsf.org/copyleft/lgpl.html LGPL
+ * @link       http://pear.horde.org/index.php?package=Share
+ */
+class Horde_Share_Kolab_MockTest extends Horde_Share_Test_Base
+{
+    public static function setUpBeforeClass()
+    {
+        $group = new Horde_Group_Test();
+        self::$share = new Horde_Share_Kolab('test', 'john', new Horde_Perms(), $group);
+    }
+
+
+}
\ No newline at end of file
diff --git a/framework/Share/test/Horde/Share/Kolab/UnitTest.php b/framework/Share/test/Horde/Share/Kolab/UnitTest.php
new file mode 100644 (file)
index 0000000..74bb917
--- /dev/null
@@ -0,0 +1,43 @@
+<?php
+/**
+ * Unit testing for the Kolab driver.
+ *
+ * PHP version 5
+ *
+ * @category   Horde
+ * @package    Share
+ * @subpackage UnitTests
+ * @author     Gunnar Wrobel <wrobel@pardus.de>
+ * @license    http://www.fsf.org/copyleft/lgpl.html LGPL
+ * @link       http://pear.horde.org/index.php?package=Share
+ */
+
+/**
+ * Prepare the test setup.
+ */
+require_once dirname(__FILE__) . '/../Autoload.php';
+
+/**
+ * Unit testing for the Kolab driver.
+ *
+ * Copyright 2011 The Horde Project (http://www.horde.org/)
+ *
+ * See the enclosed file COPYING for license information (LGPL). If you
+ * did not receive this file, see http://www.fsf.org/copyleft/lgpl.html.
+ *
+ * @category   Horde
+ * @package    Share
+ * @subpackage UnitTests
+ * @author     Gunnar Wrobel <wrobel@pardus.de>
+ * @license    http://www.fsf.org/copyleft/lgpl.html LGPL
+ * @link       http://pear.horde.org/index.php?package=Share
+ */
+class Horde_Share_Kolab_UnitTest
+extends PHPUnit_Framework_TestCase
+{
+
+    public function test()
+    {
+    }
+
+}
\ No newline at end of file