[
Date Prev][
Date Next][
Thread Prev][
Thread Next][
Date Index][
Thread Index]
[
List Home]
[egit-dev] Using product org.eclipse.sdk.ide or org.eclipse.platform.ide in EGit tests?
|
Hi,
I just noticed that the test suite org.eclipse.egit.ui--All-Non-SWT-Tests.launch is not working when using Eclipse RCP edition (error: Workbench has not been created yet).
After some investigation I found that the suite (like many others) is running the product "org.eclipse.sdk.ide" which is not available in Eclipse RCP.
When I run the product "org.eclipse.platform.ide" the suite works.
Question: is there a need to run the product org.eclipse.sdk.ide or can we always run org.eclipse.platform.ide in the Egit tests?
org.eclipse.sdk.ide is used in the following tests:
org.eclipse.egit.core.test
org.eclipse.egit.core--All-Tests.launch
36: <stringAttribute key="product" value="org.eclipse.sdk.ide"/>
org.eclipse.egit.mylyn.ui.test
pom.xml
88: <product>org.eclipse.sdk.ide</product>
org.eclipse.egit.ui--All-Non-SWT-Tests.launch
36: <stringAttribute key="product" value="org.eclipse.sdk.ide"/>
org.eclipse.egit.ui--All-SWT-Tests.launch
32: <stringAttribute key="product" value="org.eclipse.sdk.ide"/>
pom.xml
88: <product>org.eclipse.sdk.ide</product>
--Jens