Values not getting loaded from property file in JUnit









up vote
0
down vote

favorite












This is my test file and I am not able to inject values from property file



@RunWith(MockitoJUnitRunner.class)
@ContextConfiguration(classes = VersionResourceImplTest.myProp.class)
@TestPropertySource(properties = "ra.bank.app.version=TestVersion")
public class VersionResourceImplTest

@Value("$ra.bank.app.version")
private String applicationVersion;

@Test
public void testVersion()
Assert.assertEquals("TestVersion", applicationVersion);


@Configuration
public static class myProp
@Bean
public static PropertySourcesPlaceholderConfigurer propertiesResolver()

return new PropertySourcesPlaceholderConfigurer();





Getting error: Failed tests:



VersionResourceImplTest.testVersion:36 expected:<TestVersion> but was:<null>
Not able to fetch values from property file









share|improve this question









New contributor




Supriya is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.



















  • Your test doesn't use RunWith(SpringRunner.class), so all the Spring annotations are simply ignored.
    – JB Nizet
    Nov 10 at 12:12











  • yeah...it worked for me ...thanks a LOT :)
    – Supriya
    Nov 10 at 12:17














up vote
0
down vote

favorite












This is my test file and I am not able to inject values from property file



@RunWith(MockitoJUnitRunner.class)
@ContextConfiguration(classes = VersionResourceImplTest.myProp.class)
@TestPropertySource(properties = "ra.bank.app.version=TestVersion")
public class VersionResourceImplTest

@Value("$ra.bank.app.version")
private String applicationVersion;

@Test
public void testVersion()
Assert.assertEquals("TestVersion", applicationVersion);


@Configuration
public static class myProp
@Bean
public static PropertySourcesPlaceholderConfigurer propertiesResolver()

return new PropertySourcesPlaceholderConfigurer();





Getting error: Failed tests:



VersionResourceImplTest.testVersion:36 expected:<TestVersion> but was:<null>
Not able to fetch values from property file









share|improve this question









New contributor




Supriya is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.



















  • Your test doesn't use RunWith(SpringRunner.class), so all the Spring annotations are simply ignored.
    – JB Nizet
    Nov 10 at 12:12











  • yeah...it worked for me ...thanks a LOT :)
    – Supriya
    Nov 10 at 12:17












up vote
0
down vote

favorite









up vote
0
down vote

favorite











This is my test file and I am not able to inject values from property file



@RunWith(MockitoJUnitRunner.class)
@ContextConfiguration(classes = VersionResourceImplTest.myProp.class)
@TestPropertySource(properties = "ra.bank.app.version=TestVersion")
public class VersionResourceImplTest

@Value("$ra.bank.app.version")
private String applicationVersion;

@Test
public void testVersion()
Assert.assertEquals("TestVersion", applicationVersion);


@Configuration
public static class myProp
@Bean
public static PropertySourcesPlaceholderConfigurer propertiesResolver()

return new PropertySourcesPlaceholderConfigurer();





Getting error: Failed tests:



VersionResourceImplTest.testVersion:36 expected:<TestVersion> but was:<null>
Not able to fetch values from property file









share|improve this question









New contributor




Supriya is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.











This is my test file and I am not able to inject values from property file



@RunWith(MockitoJUnitRunner.class)
@ContextConfiguration(classes = VersionResourceImplTest.myProp.class)
@TestPropertySource(properties = "ra.bank.app.version=TestVersion")
public class VersionResourceImplTest

@Value("$ra.bank.app.version")
private String applicationVersion;

@Test
public void testVersion()
Assert.assertEquals("TestVersion", applicationVersion);


@Configuration
public static class myProp
@Bean
public static PropertySourcesPlaceholderConfigurer propertiesResolver()

return new PropertySourcesPlaceholderConfigurer();





Getting error: Failed tests:



VersionResourceImplTest.testVersion:36 expected:<TestVersion> but was:<null>
Not able to fetch values from property file






junit junit4






share|improve this question









New contributor




Supriya is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.











share|improve this question









New contributor




Supriya is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.









share|improve this question




share|improve this question








edited Nov 10 at 11:18









user6910411

31.5k76592




31.5k76592






New contributor




Supriya is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.









asked Nov 10 at 9:52









Supriya

11




11




New contributor




Supriya is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.





New contributor





Supriya is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.






Supriya is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.











  • Your test doesn't use RunWith(SpringRunner.class), so all the Spring annotations are simply ignored.
    – JB Nizet
    Nov 10 at 12:12











  • yeah...it worked for me ...thanks a LOT :)
    – Supriya
    Nov 10 at 12:17
















  • Your test doesn't use RunWith(SpringRunner.class), so all the Spring annotations are simply ignored.
    – JB Nizet
    Nov 10 at 12:12











  • yeah...it worked for me ...thanks a LOT :)
    – Supriya
    Nov 10 at 12:17















Your test doesn't use RunWith(SpringRunner.class), so all the Spring annotations are simply ignored.
– JB Nizet
Nov 10 at 12:12





Your test doesn't use RunWith(SpringRunner.class), so all the Spring annotations are simply ignored.
– JB Nizet
Nov 10 at 12:12













yeah...it worked for me ...thanks a LOT :)
– Supriya
Nov 10 at 12:17




yeah...it worked for me ...thanks a LOT :)
– Supriya
Nov 10 at 12:17

















active

oldest

votes











Your Answer






StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");

StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);






Supriya is a new contributor. Be nice, and check out our Code of Conduct.









 

draft saved


draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53237801%2fvalues-not-getting-loaded-from-property-file-in-junit%23new-answer', 'question_page');

);

Post as a guest



































active

oldest

votes













active

oldest

votes









active

oldest

votes






active

oldest

votes








Supriya is a new contributor. Be nice, and check out our Code of Conduct.









 

draft saved


draft discarded


















Supriya is a new contributor. Be nice, and check out our Code of Conduct.












Supriya is a new contributor. Be nice, and check out our Code of Conduct.











Supriya is a new contributor. Be nice, and check out our Code of Conduct.













 


draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53237801%2fvalues-not-getting-loaded-from-property-file-in-junit%23new-answer', 'question_page');

);

Post as a guest














































































這個網誌中的熱門文章

Barbados

How to read a connectionString WITH PROVIDER in .NET Core?

Node.js Script on GitHub Pages or Amazon S3