blob: 2347c37628a4e64cd8ed03529d3084e88ce9d3af (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
import numpy as N
from numpy.testing.utils import *
class TestEqual:
def _test_equal(self, a, b):
assert_array_equal(a, b)
def _test_not_equal(self, a, b):
passed = False
try:
assert_array_equal(a, b)
passed = True
except AssertionError:
pass
if passed:
raise AssertionError("a and b are found equal but are not")
def test_array_rank1_eq(self):
"""Test two equal array are found equal."""
a = N.array([1, 2])
b = N.array([1, 2])
self._test_equal(a, b)
def test_array_rank1_noteq(self):
a = N.array([1, 2])
b = N.array([2, 2])
self._test_not_equal(a, b)
|