From de7d50d39f2559286e5906ff8821c25e00494867 Mon Sep 17 00:00:00 2001 From: Sam Brannen <104798+sbrannen@users.noreply.github.com> Date: Sat, 7 Jun 2025 15:22:52 +0200 Subject: [PATCH] =?UTF-8?q?Redeclare=20@=E2=81=A0TestMethodOrder=20on=20@?= =?UTF-8?q?=E2=81=A0Nested=20test=20class?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Thanks to the new Discovery Issue Reporting mechanism introduced in JUnit 5.13, I became aware of the fact that the @⁠Order annotations in NestedAfterTestClassSqlScriptsTests were being silently ignored. To address that, this commit redeclares @⁠TestMethodOrder on @⁠Nested test class. --- .../test/context/jdbc/AfterTestClassSqlScriptsTests.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/spring-test/src/test/java/org/springframework/test/context/jdbc/AfterTestClassSqlScriptsTests.java b/spring-test/src/test/java/org/springframework/test/context/jdbc/AfterTestClassSqlScriptsTests.java index 9bb594d437..26dffe3893 100644 --- a/spring-test/src/test/java/org/springframework/test/context/jdbc/AfterTestClassSqlScriptsTests.java +++ b/spring-test/src/test/java/org/springframework/test/context/jdbc/AfterTestClassSqlScriptsTests.java @@ -1,5 +1,5 @@ /* - * Copyright 2002-2023 the original author or authors. + * Copyright 2002-2025 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -72,6 +72,7 @@ class AfterTestClassSqlScriptsTests extends AbstractTransactionalTests { } @Nested + @TestMethodOrder(OrderAnnotation.class) @Sql(scripts = "recreate-schema.sql", executionPhase = BEFORE_TEST_CLASS) @Sql(scripts = "drop-schema.sql", executionPhase = AFTER_TEST_CLASS) class NestedAfterTestClassSqlScriptsTests {