You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
5 lines
315 B
5 lines
315 B
from main import build_analysis_parser
|
|
|
|
def test_analysis_parser() -> None:
|
|
args=build_analysis_parser().parse_args(["--input","in","--output","out","--no-analysis-plots","--analysis-response-test","fisher"])
|
|
assert str(args.input)=="in" and args.no_analysis_plots and args.analysis_response_test=="fisher"
|
|
|