1
0

Kleinere Korrekturen

This commit is contained in:
2026-04-10 07:50:51 +02:00
parent 3f1d50d356
commit 8a785f1baa
10 changed files with 339 additions and 36 deletions

View File

@@ -94,7 +94,6 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<version>${maven-failsafe-plugin.version}</version>
<executions>
<execution>
<goals>

View File

@@ -159,9 +159,7 @@ class BootstrapRunnerEdgeCasesTest {
@Test
void createRunContext_generatesUniqueRunId() throws Exception {
// While we can't directly call the private createRunContext method,
// we can verify its effects through BatchRunContext behavior
StartConfiguration mockConfig = new StartConfiguration(
new StartConfiguration(
Files.createDirectories(tempDir.resolve("source")),
Files.createDirectories(tempDir.resolve("target")),
Files.createFile(tempDir.resolve("db.sqlite")),

View File

@@ -136,7 +136,7 @@ class PdfUmbenennerApplicationTest {
void applicationEntry_isStaticMain() throws Exception {
// Verify main is static and returns void
Method main = PdfUmbenennerApplication.class.getDeclaredMethod("main", String[].class);
int modifiers = main.getModifiers();
main.getModifiers();
// Main should be public (inherited from Object or declared)
assertEquals("void", main.getReturnType().getSimpleName(),