(self, actual, expect)
| 87 | class TestPythonOperation(unittest.TestCase): |
| 88 | |
| 89 | def check_shape(self, actual, expect): |
| 90 | self.assertEqual( |
| 91 | actual, expect, 'shape mismatch, actual shape is %s' |
| 92 | ' exepcted is %s' % |
| 93 | (_tuple_to_string(actual), _tuple_to_string(expect))) |
| 94 | |
| 95 | def _greater_helper(self, dev): |
| 96 | x0 = np.array([-0.9, -0.3, -0.1, 0.1, 0.5, |
no test coverage detected