Can someone tell me if there is a way I can pass parameters into a sql file when using the @Sql java annotation? (http://docs.spring.io/spring/docs/current/javadoc-api/org/springframework/test/context/jdbc/Sql.html)
@Sql("classpath:/sql/myawesomesqlfile.sql")
public class helloITest { }
If I have a sql file to run where only a few value change, I wanted to pass in parameters instead of creating a separate sql file for each test set. Postgres db is used.
Thanks!