Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrsuen2007-10-28 03:25:48 +0000
committerrsuen2007-10-28 03:25:48 +0000
commit2d2202dda4b0d18cd7cc908811886d3103ae4b50 (patch)
treeeb13ee82dd4615e62d05170a817120ac64835c91
parentaaa1e917c6c41a43a4761788cea8f90a2d42c962 (diff)
downloadorg.eclipse.ecf-2d2202dda4b0d18cd7cc908811886d3103ae4b50.tar.gz
org.eclipse.ecf-2d2202dda4b0d18cd7cc908811886d3103ae4b50.tar.xz
org.eclipse.ecf-2d2202dda4b0d18cd7cc908811886d3103ae4b50.zip
Add a license header.
-rwxr-xr-xtests/bundles/org.eclipse.ecf.tests/src/org/eclipse/ecf/internal/tests/Activator.java10
-rwxr-xr-xtests/bundles/org.eclipse.ecf.tests/src/org/eclipse/ecf/tests/ECFAbstractTestCase.java14
2 files changed, 22 insertions, 2 deletions
diff --git a/tests/bundles/org.eclipse.ecf.tests/src/org/eclipse/ecf/internal/tests/Activator.java b/tests/bundles/org.eclipse.ecf.tests/src/org/eclipse/ecf/internal/tests/Activator.java
index 9a822641c..22dd0a468 100755
--- a/tests/bundles/org.eclipse.ecf.tests/src/org/eclipse/ecf/internal/tests/Activator.java
+++ b/tests/bundles/org.eclipse.ecf.tests/src/org/eclipse/ecf/internal/tests/Activator.java
@@ -1,3 +1,13 @@
+/****************************************************************************
+ * Copyright (c) 2006, 2007 Composent, Inc. and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * Composent, Inc. - initial API and implementation
+ *****************************************************************************/
package org.eclipse.ecf.internal.tests;
import org.eclipse.ecf.core.IContainerFactory;
diff --git a/tests/bundles/org.eclipse.ecf.tests/src/org/eclipse/ecf/tests/ECFAbstractTestCase.java b/tests/bundles/org.eclipse.ecf.tests/src/org/eclipse/ecf/tests/ECFAbstractTestCase.java
index 39cf9d470..2d3eb56c9 100755
--- a/tests/bundles/org.eclipse.ecf.tests/src/org/eclipse/ecf/tests/ECFAbstractTestCase.java
+++ b/tests/bundles/org.eclipse.ecf.tests/src/org/eclipse/ecf/tests/ECFAbstractTestCase.java
@@ -1,10 +1,20 @@
+/****************************************************************************
+ * Copyright (c) 2006, 2007 Composent, Inc. and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * Composent, Inc. - initial API and implementation
+ *****************************************************************************/
package org.eclipse.ecf.tests;
+import junit.framework.TestCase;
+
import org.eclipse.ecf.core.util.Trace;
import org.eclipse.ecf.internal.tests.Activator;
-import junit.framework.TestCase;
-
/**
* Base ECF test case provide utility methods for subclasses.
*/

Back to the top