Closed
Description
I think args should behave like properties and allow something like @SpringBootTest(args = "--myargfoo=${test.foo.value}").
Besides, it looks like arg is not considered as context id in order to tell whether reuse the context or not across tests. I had to hack it with a dup like @SpringBootTest(args = "--myargfoo=NValue", property="NValue"). Otherwise context behave as if all tests with diff arguments were the same context (bare @SpringBootTest)