Does test class/file names have to end as "IT" in order for the lilberty:dev maven goal to work? When I followed Creating a RESTful web service and issued "mvn liberty:dev" command in the finish folder, once I changed the test file name EndpointIT.java to be EndpointTest and the class name EndpointIT EndpointTest(and nothing else), I saw test errors in the console when pressing ENTER.
If I changed file/class names to EndpointTestIT (with "IT" at the end), the test worked again.
It seems to me that a file and class must have "IT" suffix. Would this be a requirement a design feature? Or did I miss reading something?