Add a placeholder unit test


git-svn-id: https://svn.apache.org/repos/asf/chemistry/phpclient/trunk@1499189 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/test/atom/AlfrescoH2CMISTest.php b/test/atom/AlfrescoH2CMISTest.php
new file mode 100644
index 0000000..861e79f
--- /dev/null
+++ b/test/atom/AlfrescoH2CMISTest.php
@@ -0,0 +1,19 @@
+<?php
+require_once('../utils/phpunit.phar');
+require_once('../../atom/cmis-lib.php');
+class AlfrescoCMISH2Test extends PHPUnit_Framework_TestCase
+{
+	protected $client;
+	protected function setUp() {
+		$repo_url = "http://localhost:8080/alfresco/cmisatom";
+		$repo_username = "admin";
+		$repo_password = "admin";
+		$this->client = new CMISService($repo_url, $repo_username, $repo_password);
+	}
+	public function testGetSites() {
+		$folder = $this->client->getObjectByPath("/Sites");
+		$this->assertEquals("F:st:sites",$folder->properties["cmis:objectTypeId"]);
+		$this->assertEquals("cmis:folder",$folder->properties["cmis:baseTypeId"]);
+	}
+}
+?>