문제

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")),
config: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.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top