06-FixCompilationWarningsMain

This commit is contained in:
Adrian-Devries 2025-04-24 12:53:55 +02:00
parent a1965e7079
commit adb4effcf9
17 changed files with 76 additions and 50 deletions

View file

@ -71,13 +71,13 @@ public class VersioningTest {
@Test
public void testNewFeature() throws URISyntaxException {
this.exception.expect(ConversionService.ConversionExeption.class);
this.exception.expect(ConversionService.ConversionException.class);
this.service.readXml(NEW_FEATURE.toURI(), Scenarios.class, SchemaProvider.getScenarioSchema());
}
@Test
public void testNewVersion() throws URISyntaxException {
this.exception.expect(ConversionService.ConversionExeption.class);
this.exception.expect(ConversionService.ConversionException.class);
this.service.readXml(NEW_VERSION.toURI(), Scenarios.class, SchemaProvider.getScenarioSchema());
}
}