Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
View | Details | Raw Unified | Return to bug 287842
Collapse All | Expand All

(-)src/org/eclipse/wst/css/ui/tests/viewer/CSSCodeFoldingTest.java (+3 lines)
Lines 216-221 Link Here
216
		} catch(BadLocationException e) {
216
		} catch(BadLocationException e) {
217
			fail("Test is broken, add location has become invalid.\n" + e.getMessage());
217
			fail("Test is broken, add location has become invalid.\n" + e.getMessage());
218
		}
218
		}
219
		
220
		//TODO: move this to the last test in this file
221
		fIsLastTest = true;
219
	}
222
	}
220
	
223
	
221
	/**
224
	/**
(-)src/org/eclipse/wst/css/ui/tests/CSSUITestSuite.java (+2 lines)
Lines 3-8 Link Here
3
import junit.framework.Test;
3
import junit.framework.Test;
4
import junit.framework.TestSuite;
4
import junit.framework.TestSuite;
5
5
6
import org.eclipse.wst.css.ui.tests.viewer.CSSCodeFoldingTest;
6
import org.eclipse.wst.css.ui.tests.viewer.TestCSSContentAssist;
7
import org.eclipse.wst.css.ui.tests.viewer.TestCSSContentAssist;
7
import org.eclipse.wst.css.ui.tests.viewer.TestViewerConfigurationCSS;
8
import org.eclipse.wst.css.ui.tests.viewer.TestViewerConfigurationCSS;
8
9
Lines 17-21 Link Here
17
		addTest(new TestSuite(TestViewerConfigurationCSS.class));
18
		addTest(new TestSuite(TestViewerConfigurationCSS.class));
18
		addTest(new TestSuite(TestEditorConfigurationCSS.class));
19
		addTest(new TestSuite(TestEditorConfigurationCSS.class));
19
		addTest(new TestSuite(TestCSSContentAssist.class));
20
		addTest(new TestSuite(TestCSSContentAssist.class));
21
		addTest(new TestSuite(CSSCodeFoldingTest.class,"CSS Code Folding Test"));
20
	}
22
	}
21
}	
23
}	
(-)src/org/eclipse/wst/dtd/ui/tests/viewer/DTDCodeFoldingTest.java (+3 lines)
Lines 226-231 Link Here
226
		} catch(BadLocationException e) {
226
		} catch(BadLocationException e) {
227
			fail("Test is broken, add location has become invalid.\n" + e.getMessage());
227
			fail("Test is broken, add location has become invalid.\n" + e.getMessage());
228
		}
228
		}
229
		
230
		//TODO: move this to the last test in this file
231
		fIsLastTest = true;
229
	}
232
	}
230
	
233
	
231
	/**
234
	/**

Return to bug 287842