java - How to use dbunit annotation for junit only once? -
i use dbunit , junit annotion :
@databasesetup(value = {"worktable.csv"}, type=databaseoperation.clean_insert)
for each test. fills database csv. it's time consuming , want in 1 @beforeall
method. seems using parameters not idea (https://github.com/pragmatists/junitparams/issues/85).
how ? thanks.
Comments
Post a Comment