[docs]classTest:""" Represents an input and output test. :param str test_name: Name of the test. :param str test_id: Unique identifier for the test. :param File in_file: Input file for the test. :param File out_file: Output file for the test. :param str group: Group identifier for the test. """def__init__(self,test_name:str,test_id:str,in_file:File,out_file:File,group:str):self.test_name=test_nameself.test_id=test_idself.in_file=in_fileself.out_file=out_fileself.group=groupdef__repr__(self):returnf"<Test {self.test_name}>"