Re: Creating task/macro wrappers

2019-02-25 Thread Isaac Jurado
ript (e.g. via ) seems very tedious. > > > > Fortunately, none of the problematic TestNG's attributes are essential > > right now, so I may end up implementing the wrapper in Java. > > > > Thank you all for your suggestions. > > > > On Mon, Feb 25, 2019 a

Re: Creating task/macro wrappers

2019-02-25 Thread Matt Benson
on, Feb 25, 2019 at 3:20 PM Jan Matèrne (jhm) > wrote: > > > > Not sure why you want to wrap an existing Ant task ... > > If you want to provide default settings, you could use > > > > Jan > > > > > -Ursprüngliche Nachricht- > > > V

Re: Creating task/macro wrappers

2019-02-25 Thread Isaac Jurado
could use > > Jan > > > -Ursprüngliche Nachricht- > > Von: Isaac Jurado [mailto:dipto...@gmail.com] > > Gesendet: Sonntag, 24. Februar 2019 18:27 > > An: Ant Users List; gudnabr...@gmail.com > > Betreff: Re: Creating task/macro wrappers > > >

Re: Creating task/macro wrappers

2019-02-24 Thread Isaac Jurado
Thanks! I didn't notice the task existed. However, I don't seem to wrap my head around it. In particular, it doesn't seem to support forward references. This is what I tried: ... The error I get is: java.lang.IllegalStateException: Unknown reference "my-testng-invocation

Re: Creating task/macro wrappers

2019-02-23 Thread Al Le
You could write a script, e.g. in JavaScript. There, you would create a new instance of the testng task (using the global 'project' object), then set all the necessary attributes and nested elements of the task (don't forget to set the owning target), and, finally, call its 'execute' method.

Re: Creating task/macro wrappers

2019-02-23 Thread Matt Benson
Look into the task with conditionally executed (using if/unless namespaces, antcontrib , or similar) blocks. HTH, Matt On Sat, Feb 23, 2019, 3:37 AM Isaac Jurado wrote: > Hello Ant users, > > I'm trying to create a wrapper over . The idea is > to have my macro expose the same attributes tha