We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Sam Brannen opened SPR-5713 and commented
Status Quo: 'locations' attribute name is required even if you're only specifying the locations.
@RunWith(SpringJUnit4ClassRunner.class) @ContextConfiguration(locations={"/applicationContext.xml"}) public class MyTest {
@RunWith
@ContextConfiguration
Goal: omit attribute name when only configuring locations.
@RunWith(SpringJUnit4ClassRunner.class) @ContextConfiguration("/applicationContext.xml") public class MyTest {
Affects: 2.5.6
Referenced from: commits 781da89, 7d4da00, 9daae23
The text was updated successfully, but these errors were encountered:
Sam Brannen commented
Added 'value' alias for @ContextConfiguration's 'locations' attribute.
Sorry, something went wrong.
sbrannen
No branches or pull requests
Sam Brannen opened SPR-5713 and commented
Status Quo: 'locations' attribute name is required even if you're only specifying the locations.
@RunWith
(SpringJUnit4ClassRunner.class)@ContextConfiguration
(locations={"/applicationContext.xml"})public class MyTest {
Goal: omit attribute name when only configuring locations.
@RunWith
(SpringJUnit4ClassRunner.class)@ContextConfiguration
("/applicationContext.xml")public class MyTest {
Affects: 2.5.6
Referenced from: commits 781da89, 7d4da00, 9daae23
The text was updated successfully, but these errors were encountered: