(Interface i)
| 520 | assertTrue("java object passed through Go should not be wrapped", want == Testpkg.iDup(want)); |
| 521 | InterfaceDupper idup = new InterfaceDupper(){ |
| 522 | @Override public Interface iDup(Interface i) { |
| 523 | return i; |
| 524 | } |
| 525 | }; |
| 526 | assertTrue("Go interface passed through Java should not be wrapped", Testpkg.callIDupper(idup)); |
| 527 | ConcreteDupper cdup = new ConcreteDupper(){ |
no outgoing calls
no test coverage detected