I'd like to test calls to XMLParser.parse().
I'd like to use a testing framework to send various XML documents to a
class method that calls this routine.
I want to use the browser implementation to perform the parse. This
means GWTTestCase.
GWTTestCase implies no java.io
I don't want to hardcode XML documents in my test drivers. I'd like to
use GWT Resources.
GWT Resources seems to imply GWT.create() which conflicts with GWTTestCase.
I'm sure there's a way to get Gin to work with GWTTestCase.
Searching only returns example code that doesn't work and is poorly
documented (e.g.
http://howtogwt.blogspot.com/2010/03/instance-creation-and-dependency.html)
What solutions have others implemented?
TIA,
jec