Author: dgolovin
Date: 2009-02-27 02:27:52 -0500 (Fri, 27 Feb 2009)
New Revision: 13866
Added:
trunk/jst/tests/org.jboss.tools.jst.jsp.test/src/org/jboss/tools/jst/jsp/test/JspPreferencesPageTest.java
Modified:
trunk/jst/tests/org.jboss.tools.jst.jsp.test/src/org/jboss/tools/jst/jsp/test/JstJspAllTests.java
Log:
increase test coverage
Added:
trunk/jst/tests/org.jboss.tools.jst.jsp.test/src/org/jboss/tools/jst/jsp/test/JspPreferencesPageTest.java
===================================================================
---
trunk/jst/tests/org.jboss.tools.jst.jsp.test/src/org/jboss/tools/jst/jsp/test/JspPreferencesPageTest.java
(rev 0)
+++
trunk/jst/tests/org.jboss.tools.jst.jsp.test/src/org/jboss/tools/jst/jsp/test/JspPreferencesPageTest.java 2009-02-27
07:27:52 UTC (rev 13866)
@@ -0,0 +1,27 @@
+/*******************************************************************************
+ * Copyright (c) 2007 Red Hat, Inc.
+ * Distributed under license by Red Hat, Inc. All rights reserved.
+ * This program is 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:
+ * Red Hat, Inc. - initial API and implementation
+ ******************************************************************************/
+package org.jboss.tools.jst.jsp.test;
+
+import org.jboss.tools.jst.jsp.preferences.JSPOccurrencesPreferencePage;
+import org.jboss.tools.tests.PreferencePageTest;
+
+import junit.framework.TestCase;
+
+/**
+ * @author eskimo
+ *
+ */
+public class JspPreferencesPageTest extends PreferencePageTest {
+
+ public void testJSPOccurrencesPreferencePage() {
+ doDefaultTest("org.eclipse.wst.sse.ui.preferences.jsp.occurrences",JSPOccurrencesPreferencePage.class);
+ }
+}
Property changes on:
trunk/jst/tests/org.jboss.tools.jst.jsp.test/src/org/jboss/tools/jst/jsp/test/JspPreferencesPageTest.java
___________________________________________________________________
Name: svn:mime-type
+ text/plain
Modified:
trunk/jst/tests/org.jboss.tools.jst.jsp.test/src/org/jboss/tools/jst/jsp/test/JstJspAllTests.java
===================================================================
---
trunk/jst/tests/org.jboss.tools.jst.jsp.test/src/org/jboss/tools/jst/jsp/test/JstJspAllTests.java 2009-02-27
07:20:21 UTC (rev 13865)
+++
trunk/jst/tests/org.jboss.tools.jst.jsp.test/src/org/jboss/tools/jst/jsp/test/JstJspAllTests.java 2009-02-27
07:27:52 UTC (rev 13866)
@@ -29,6 +29,7 @@
suite.addTestSuite(JstJspJbide1759Test.class);
suite.addTestSuite(Jbide1791Test.class);
suite.addTestSuite(JsfJspJbide2437Test.class);
+ suite.addTestSuite(JspPreferencesPageTest.class);
return suite;
}