(t *testing.T)
| 56 | } |
| 57 | |
| 58 | func TestClasses(t *testing.T) { |
| 59 | if !java.IsAvailable() { |
| 60 | t.Skipf("java importer is not available") |
| 61 | } |
| 62 | runTest(t, []string{ |
| 63 | "golang.org/x/mobile/bind/testdata/testpkg/javapkg", |
| 64 | }, "", "ClassesTest") |
| 65 | } |
| 66 | |
| 67 | func TestCustomPkg(t *testing.T) { |
| 68 | runTest(t, []string{ |
nothing calls this directly
no test coverage detected