Kleinere Korrekturen
This commit is contained in:
@@ -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")),
|
||||
|
||||
@@ -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(),
|
||||
|
||||
Reference in New Issue
Block a user