1functionuvm_component uvm_default_factory::create_component_by_name(stringrequested_type_name,2stringparent_inst_path="",3stringname,4uvm_component parent);5uvm_object_wrapper wrapper;6stringinst_path;78if(parent_inst_path =="")9inst_path =name;10elseif(name !="")11inst_path = {parent_...
const Test = createForm({ fieldNameProp: 'id', name: 'test', })( class extends React.Component { render() { const { getFieldProps } = this.props.form; return ( ); } } ); const wrapper = mount(<Test />); const input = wrapper.find('input').instance(); expect(input.id)....