class documentation

class TestArgmaxArgminCommon:

View In Hierarchy

Undocumented

Method test​_all Undocumented
Method test​_np​_argmin​_argmax​_keepdims Undocumented
Method test​_np​_vs​_ndarray Undocumented
Method test_object_with_​NULLs Undocumented
Method test​_output​_shape Undocumented
Method test​_ret​_is​_out Undocumented
Method test​_unicode Undocumented
Class Variable sizes Undocumented
@pytest.mark.parametrize('method', ['max', 'min'])
def test_all(self, method):

Undocumented

@pytest.mark.parametrize('size, axis', itertools.chain(*[[(size, axis) for axis in list(range(-len(size), len(size))) + [None]] ...
@pytest.mark.parametrize('method', [np.argmax, np.argmin])
def test_np_argmin_argmax_keepdims(self, size, axis, method):

Undocumented

@pytest.mark.parametrize('arr_method, np_method', [('argmax', np.argmax), ('argmin', np.argmin)])
def test_np_vs_ndarray(self, arr_method, np_method):

Undocumented

@pytest.mark.leaks_references(reason='replaces None with NULL.')
@pytest.mark.parametrize('method, vals', [('argmax', (10, 30)), ('argmin', (30, 10))])
def test_object_with_NULLs(self, method, vals):

Undocumented

@pytest.mark.parametrize('method', ['argmax', 'argmin'])
def test_output_shape(self, method):

Undocumented

@pytest.mark.parametrize('ndim', [0, 1])
@pytest.mark.parametrize('method', ['argmax', 'argmin'])
def test_ret_is_out(self, ndim, method):

Undocumented

@pytest.mark.parametrize('np_array, method, idx, val', [(np.zeros, 'argmax', 5942, 'as'), (np.ones, 'argmin', 6001, '0')])
def test_unicode(self, np_array, method, idx, val):

Undocumented

sizes: list =

Undocumented