Class Summary |
Activator |
|
ConfigurationImpl |
|
Connection |
Accepts URLs like
dir:/Users/tonit/devel/pax/testing/$anchor=com.foo.Boo
dir:/Users/tonit/devel/pax/testing/$anchor=com.foo.Boo,Bundle-SymbolicName=HelloWorld
dir:.$anchor=com.foo.Boo,Bundle-SymbolicName=HelloWorld
And even
* dir:mytest
which uses the relative dir mytest (from current one) without an anchor. |
FileTailImpl |
Finds resources of the current module under test just by given top-level parent (whatever that is)
and name of the class under test using a narrowing approach. |
Parser |
Current format (as of paxurl 0.3.3)
Expects a url like dir:/Users/foo/myroot
New format suggestion:
This is if you don't know the exact folders but examples of contents
dir:/Users/tonit/foo;org/ops4j/pax/Paxer.class&/Users/tonit/foo;org/ops4j/pax/PaxerTest.class$props=foo&other=bar
If you want to just include certain files:
(give them a filename pattern)
dir:tail;/Users/tonit/foo;org/ops4j/pax/Paxer.class;.*class&/Users/tonit/foo;org/ops4j/pax/PaxerTest.class$props=foo&other=bar
If you know exact folders, this is the version without tail:
dir:/Users/tonit/foo/classes&/Users/tonit/foo/test-classes$props=foo&other=bar
This would be the full format:
dir:;;$=
While tail and filenamepattern are optional. |