Add basic testing class
diff --git a/build.xml b/build.xml
index 4b98b82..b6add4d 100644
--- a/build.xml
+++ b/build.xml
@@ -183,7 +183,7 @@
     <javac srcdir="${test.dir}" destdir="${build-test.dir}" debug="true"
       includeantruntime="false" encoding="utf-8">
       <compilerarg value="-Xlint:unchecked"/>
-      <classpath refid="adaptorlib.build.classpath"/>
+      <classpath refid="adaptor.build.classpath"/>
       <classpath location="${build-src.dir}"/>
       <classpath location="${junit.jar}"/>
     </javac>
diff --git a/test/com/google/enterprise/adaptor/sharepoint/SharePointAdaptorTest.java b/test/com/google/enterprise/adaptor/sharepoint/SharePointAdaptorTest.java
new file mode 100644
index 0000000..c5f5055
--- /dev/null
+++ b/test/com/google/enterprise/adaptor/sharepoint/SharePointAdaptorTest.java
@@ -0,0 +1,29 @@
+// Copyright 2012 Google Inc. All Rights Reserved.
+//
+// Licensed 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 com.google.enterprise.adaptor.sharepoint;
+
+import static org.junit.Assert.*;
+
+import org.junit.Test;
+
+/**
+ * Test cases for @{link SharePointAdaptor}.
+ */
+public class SharePointAdaptorTest {
+  @Test
+  public void testConstructor() {
+    new SharePointAdaptor();
+  }
+}