func AssertInArray(array interface{}, item interface{}) bool {

    v := reflect.ValueOf(array)
    if v.Kind() != reflect.Array && v.Kind() != reflect.Slice {
        line := getStackLine(2)