I'd like to test GUI client with fest-swing but... The client based on custom layer which wrapps swing components. The problem is that my custom gui components do not inherite from swing components but are composed from them (the author of the layer prefered composition over inheritance).
So now I am able to write a test using fest-swing, the test starts the client but I cannot refer to any Frame, Component, Dialog, Window because my ui components are not subclasses of standard swing/awt components. I got stuck here. I am now reading fest-swing code and it seems that I cannot use this lib in my case bacuase fest-swing use generalization with subtyping (inheritance) :(
Any one of you faced this problem? Any hinst?