(lessFunc interface{})
| 29 | } |
| 30 | |
| 31 | func SortSlices(lessFunc interface{}) cmp.Option { |
| 32 | return cmpopts.SortSlices(lessFunc) |
| 33 | } |
| 34 | |
| 35 | // ExpectNoDiff tests to see if the two interfaces have no diff. |
| 36 | // If there is no diff, the retrun value is true. |
no outgoing calls