From: <ce...@us...> - 2004-01-12 17:27:54
|
Update of /cvsroot/csseditor/net.sourceforge.csseditor.tests In directory sc8-pr-cvs1:/tmp/cvs-serv27502 Modified Files: .project plugin.xml .classpath Log Message: Add a generic TextEditorTestCase for testing stuff that relies on an actual text editor being present Index: .project =================================================================== RCS file: /cvsroot/csseditor/net.sourceforge.csseditor.tests/.project,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** .project 27 Dec 2003 16:38:23 -0000 1.1 --- .project 12 Jan 2004 17:27:50 -0000 1.2 *************** *** 5,15 **** <projects> <project>net.sourceforge.csseditor</project> ! <project>org.eclipse.core.runtime.compatibility</project> <project>org.eclipse.jface</project> <project>org.eclipse.jface.text</project> <project>org.eclipse.swt</project> <project>org.eclipse.text</project> <project>org.eclipse.ui</project> <project>org.eclipse.ui.workbench.texteditor</project> </projects> <buildSpec> --- 5,21 ---- <projects> <project>net.sourceforge.csseditor</project> ! <project>org.eclipse.core.resources</project> ! <project>org.eclipse.core.runtime</project> <project>org.eclipse.jface</project> <project>org.eclipse.jface.text</project> + <project>org.eclipse.osgi</project> <project>org.eclipse.swt</project> <project>org.eclipse.text</project> <project>org.eclipse.ui</project> + <project>org.eclipse.ui.editors</project> + <project>org.eclipse.ui.ide</project> + <project>org.eclipse.ui.views</project> <project>org.eclipse.ui.workbench.texteditor</project> + <project>org.junit</project> </projects> <buildSpec> Index: plugin.xml =================================================================== RCS file: /cvsroot/csseditor/net.sourceforge.csseditor.tests/plugin.xml,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** plugin.xml 28 Dec 2003 19:51:01 -0000 1.3 --- plugin.xml 12 Jan 2004 17:27:50 -0000 1.4 *************** *** 13,17 **** </runtime> <requires> - org.eclipse.core.runtime.compatibility <import plugin="org.eclipse.ui.ide"/> <import plugin="org.eclipse.ui.views"/> --- 13,16 ---- *************** *** 25,29 **** --- 24,32 ---- <import plugin="org.eclipse.ui.workbench.texteditor"/> <import plugin="org.junit"/> + <import plugin="org.eclipse.core.resources"/> + <import plugin="org.eclipse.core.runtime"/> + <import plugin="org.eclipse.osgi"/> </requires> + </plugin> Index: .classpath =================================================================== RCS file: /cvsroot/csseditor/net.sourceforge.csseditor.tests/.classpath,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** .classpath 28 Dec 2003 17:33:26 -0000 1.2 --- .classpath 12 Jan 2004 17:27:50 -0000 1.3 *************** *** 3,6 **** --- 3,9 ---- <classpathentry kind="src" path="src"/> <classpathentry sourcepath="lib/mockobjectssrc.zip" kind="lib" path="lib/mockobjects.jar"/> + <classpathentry kind="src" path="/org.eclipse.ui.ide"/> + <classpathentry kind="src" path="/org.eclipse.ui.views"/> + <classpathentry kind="src" path="/org.eclipse.ui.editors"/> <classpathentry kind="src" path="/net.sourceforge.csseditor"/> <classpathentry kind="src" path="/org.eclipse.jface"/> *************** *** 10,15 **** <classpathentry kind="src" path="/org.eclipse.ui"/> <classpathentry kind="src" path="/org.eclipse.ui.workbench.texteditor"/> ! <classpathentry sourcepath="ORG_ECLIPSE_JDT_SOURCE_SRC/org.junit_3.8.1/junitsrc.zip" kind="var" path="ECLIPSE_HOME/plugins/org.junit_3.8.1/junit.jar"/> ! <classpathentry kind="src" path="/org.eclipse.core.runtime.compatibility"/> <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/> <classpathentry kind="output" path="bin"/> --- 13,20 ---- <classpathentry kind="src" path="/org.eclipse.ui"/> <classpathentry kind="src" path="/org.eclipse.ui.workbench.texteditor"/> ! <classpathentry kind="src" path="/org.junit"/> ! <classpathentry kind="src" path="/org.eclipse.core.resources"/> ! <classpathentry kind="src" path="/org.eclipse.core.runtime"/> ! <classpathentry kind="src" path="/org.eclipse.osgi"/> <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/> <classpathentry kind="output" path="bin"/> |