OK this is kind of related to : http://stackoverflow.com/questions/728805/using-jetty-to-install-and-run-servlet-tests-programmatically
got great answers there, and have been able to load up servlets programmatically and its all made of awesome.
What I would like to do however is load up a web.xml in a test (all in the classpath) and have it run up a server (using the current classpath) - I have seen in docs how to point it to a directory to do that, but I want to work off the classpath (better for in place testing). Essentially validating my web.xml.
(its not relevant, but this app is in scala, but I have had no issue with that, everything works as advertised).