Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [equinox-dev] Good support for PDE in build systems anyone?


Niclas Hedhman wrote on 06/04/2006 11:52:33 PM:
> Also, how does PDE know what classpath to use for "unit testing" vs normal
> runs??


Under Eclipse, the unit testing is generally under a separate project.  So a bundle A.test will depend on bundle A and there is no such thing as a "testing run" as far as A is concerned.  A is built the same for a testing run as it is for a normal run.  

This is a kind of extension to the idea that Jeff presented wrt compiling: at test time, we use a classpath that is as close as possible to the classpath that will be used at runtime.

-Andrew

Back to the top