(Value, IR, IL)
| 15 | |
| 16 | @pytest.mark.parametrize("Value, IR, IL", test_data) |
| 17 | def test_atsc(Value, IR, IL): |
| 18 | j = 2 |
| 19 | ref = np.array([2, 4, 6, 8, 10], np.int64) |
| 20 | comp = atsc(IL, IR, j) |
| 21 | npt.assert_equal(ref, comp) |
| 22 | |
| 23 | |
| 24 | @pytest.mark.parametrize("Value, IR, IL", test_data) |