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.
6 lines
339 B
6 lines
339 B
from src.models import AnalysisConditionSummary,AnalysisRunSummary
|
|
|
|
def test_analysis_models() -> None:
|
|
condition=AnalysisConditionSummary("prompt",1,1,1,0,1.,0,0,None,None,None,None,None,None,0,1,0,0,1,0)
|
|
run=AnalysisRunSummary("a",1,1,1,0,1,0,"t","out","note")
|
|
assert condition.response_rate==1. and run.input_files_count==1
|
|
|