/**
* Ensure that building a project works properly.,
*/
public void testBuildProject() throws Exception {
ProjectConfigurationReader reader = new ProjectConfigurationReader();
URL url = getClassRelativeResourceURL("a/mcs-project.xml");
InputStream stream = url.openStream();
RuntimeProjectConfiguration configuration;
try {
configuration = reader.readProject(stream, url.toExternalForm());
} finally {
stream.close();
}
// =====================================================================