Adding parameters to the init_per_testcase config parameter
I have a erlang integration test using the common test frame work. The config parameter passed to the init_per_testcase call and all the tests is initialized as:
ConfigFilename = filename:absname("something.config", os:getenv("TEST_DIR")),
con开发者_如何学JAVAfig:load(ConfigFilename).
How can a I add a parameter to the config object, I would like to add a PID for a gen_server which all tests must use.
It was a list of key value tuples so [{key,Value}|Config] did the trick.
精彩评论