class Cucumber::MultilineArgument::DataTable::DiffMatrices

def should_raise?

def should_raise?
  [
    missing_row_pos && options.fetch(:missing_row, true),
    insert_row_pos  && options.fetch(:surplus_row, true),
    missing_col     && options.fetch(:missing_col, true),
    surplus_col     && options.fetch(:surplus_col, false),
    misplaced_col   && options.fetch(:misplaced_col, false)
  ].any?
end