(a=None, b=None)
| 511 | |
| 512 | |
| 513 | def concat(a=None, b=None): |
| 514 | # we use this method temporarily, because of ast-transpiler issue across langs |
| 515 | if a is None: |
| 516 | return b |
| 517 | elif b is None: |
| 518 | return a |
| 519 | else: |
| 520 | result = [] |
| 521 | for i in range(0, len(a)): |
| 522 | result.append(a[i]) |
| 523 | for j in range(0, len(b)): |
| 524 | result.append(b[j]) |
| 525 | return result |
| 526 | |
| 527 | |
| 528 | def assert_non_emtpy_array(exchange, skipped_properties, method, entry, hint=None): |
no test coverage detected
searching dependent graphs…