O
==== github.com/progorker =_============ _ __ _ _ ___ __ _ ___ _ _| |_____ _ _ | '_ \ '_/ _ \/ _` / _ \ '_| / / -_) '_| | .__/_| \___/\__, \___/_| |_\_\___|_| =|_|===========|___/====================== API References of myTestor ----- oOo ----- [procedure] api_testor_suite_case ========================================== -------|__/------------------------- SYNTAX ------------------------------------ procedure api_testor_suite_case ( in p_token varchar(36), out p_suite_id bigint, out p_case_id bigint, in p_suite_code varchar(640), in p_case_code varchar(640) ) -------|__/------------------------- USAGE ------------------------------------ $) set @v_token = '_'; call api_testor_login( @v_token, 'mytestor', 'rzutomqahegpnyx' ); select @v_token; ---------------------------- +----------------------------------+ | @v_token | +----------------------------------+ | a0f2733d08f13423f076732170be6b92 | +----------------------------------+ ---------------------------- $) set @v_case_id = -1; set @v_suite_id = -1; call api_testor_suite_case( 'a0f2733d08f13423f076732170be6b92', @v_suite_id, @v_case_id, 'sterry', 'table-users' ); select @v_case_id, @v_suite_id; ---------------------------- +------------+-------------+ | @v_case_id | @v_suite_id | +------------+-------------+ | 1 | 1 | +------------+-------------+ ----------------------------