(self, tok, tips)
| 38 | raise AssertionError("%s not in %s", tok, tips) |
| 39 | |
| 40 | def assert_in(self, tok, tips): |
| 41 | self.assertEqual(4, len(tips[0])) |
| 42 | for a in tips: |
| 43 | if tok == a[0]: |
| 44 | return a |
| 45 | s = "" |
| 46 | for a in tips: |
| 47 | s += str(a) |
| 48 | s += "\n" |
| 49 | raise AssertionError("%s not in %s" % (tok, s)) |
| 50 | |
| 51 | def test_imports1a(self): |
| 52 | f, tip = _pydev_jy_imports_tipper.generate_tip("java.util.HashMap") |
no outgoing calls
no test coverage detected