Hello everyone, I would like to ask related with equality test in multinomial logit. Here is my two model of mlogit:

Code:
mlogit formal_trans i.training1 age sq_age i.educ i.marstat child i.cities i.pulau if gender==0, base (0) robust

mlogit formal_trans i.training1 age sq_age i.educ i.marstat child i.cities i.pulau if gender==1, base (0) robust
I separate the model by gender, where gender==0 is for male and gender==1 is for female. So I would like to do equality test to make sure that I can disaggregation my sample based on gender. Is there any equality test that I can perform for my mlogit models? Thank you.