Update of /cvsroot/csseditor/net.sourceforge.csseditor.tests/src/net/sourceforge/csseditor/tests
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6048/src/net/sourceforge/csseditor/tests
Modified Files:
UITests.java
Log Message:
Include the new partition scanner tests
Index: UITests.java
===================================================================
RCS file: /cvsroot/csseditor/net.sourceforge.csseditor.tests/src/net/sourceforge/csseditor/tests/UITests.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** UITests.java 12 Jan 2004 17:37:09 -0000 1.4
--- UITests.java 25 Jan 2004 09:15:52 -0000 1.5
***************
*** 1,33 ****
! /*
! * Copyright (c) 2003 Christopher Lenz and others.
! * All rights reserved. This program and the accompanying materials
! * are made available under the terms of the Common Public License v1.0
! * which accompanies this distribution, and is available at
! * http://www.eclipse.org/legal/cpl-v10.html
! *
! * Contributors:
! * Christopher Lenz - initial API and implementation
! *
! * $Id$
! */
!
! package net.sourceforge.csseditor.tests;
!
! import junit.framework.Test;
! import junit.framework.TestSuite;
!
! import net.sourceforge.csseditor.tests.internal.text.CssCodeScannerTest;
! import net.sourceforge.csseditor.tests.internal.text.CssContentAssistProcessorTest;
!
! public class UITests {
!
! public static Test suite() {
! TestSuite suite = new TestSuite("CSS editor UI tests"); //$NON-NLS-1$
! //$JUnit-BEGIN$
! suite.addTestSuite(CssCodeScannerTest.class);
! suite.addTestSuite(CssContentAssistProcessorTest.class);
! //$JUnit-END$
! return suite;
! }
!
! }
--- 1,35 ----
! /*
! * Copyright (c) 2003 Christopher Lenz and others.
! * All rights reserved. This program and the accompanying materials
! * are made available under the terms of the Common Public License v1.0
! * which accompanies this distribution, and is available at
! * http://www.eclipse.org/legal/cpl-v10.html
! *
! * Contributors:
! * Christopher Lenz - initial API and implementation
! *
! * $Id$
! */
!
! package net.sourceforge.csseditor.tests;
!
! import junit.framework.Test;
! import junit.framework.TestSuite;
!
! import net.sourceforge.csseditor.tests.internal.text.CssCodeScannerTest;
! import net.sourceforge.csseditor.tests.internal.text.CssContentAssistProcessorTest;
! import net.sourceforge.csseditor.tests.internal.text.CssPartitionScannerTest;
!
! public class UITests {
!
! public static Test suite() {
! TestSuite suite = new TestSuite("CSS editor UI tests"); //$NON-NLS-1$
! //$JUnit-BEGIN$
! suite.addTestSuite(CssCodeScannerTest.class);
! suite.addTestSuite(CssContentAssistProcessorTest.class);
! suite.addTestSuite(CssPartitionScannerTest.class);
! //$JUnit-END$
! return suite;
! }
!
! }
|