(self, array1, array2)
| 113 | mesh2.get_attribute(attr_name)) |
| 114 | |
| 115 | def assert_array_equal(self, array1, array2): |
| 116 | numpy.testing.assert_array_equal(array1, array2) |
| 117 | |
| 118 | def assert_array_almost_equal(self, array1, array2, decimal=6): |
| 119 | numpy.testing.assert_array_almost_equal(array1, array2, decimal) |
no outgoing calls
no test coverage detected