I have configured a GWT project using Spring MVC (for RPC calling and server side dependency injection). I have tested gwt-test-utils lib, it was working with Spring and Spring MVC nice but my GWT ui is complicated and it could not parse my *.ui.xml files. I am going to write GWTTestCase so that i can call my RPC method inside GWTTestCase but i have several problem:
contextConfigLocation param for test.I do not know how can load spring context in my GWTTestCase class. Something like this i guess:
@ContextConfiguration(locations = {"classpath:applicationContext.xml" , "classpath:servlet-mvc.xml"})
Are there any way to solve these problems or an alternative way?