(arr)
| 408 | |
| 409 | @staticmethod |
| 410 | def check_roundtrip(arr): |
| 411 | assert_equal( |
| 412 | arr.as_string_array(), |
| 413 | LabelArray( |
| 414 | arr.as_string_array(), |
| 415 | arr.missing_value, |
| 416 | ).as_string_array(), |
| 417 | ) |
| 418 | |
| 419 | @staticmethod |
| 420 | def create_categories(width, plus_one): |
no test coverage detected