(self)
| 470 | |
| 471 | class TestCarg: |
| 472 | def test_simple(self): |
| 473 | check_real_value(ncu._arg, 1, 0, 0, False) |
| 474 | check_real_value(ncu._arg, 0, 1, 0.5*np.pi, False) |
| 475 | |
| 476 | check_real_value(ncu._arg, 1, 1, 0.25*np.pi, False) |
| 477 | check_real_value(ncu._arg, np.PZERO, np.PZERO, np.PZERO) |
| 478 | |
| 479 | # TODO This can be xfail when the generator functions are got rid of. |
| 480 | @pytest.mark.skip( |
nothing calls this directly
no test coverage detected