2016-07-07 17:27:58 +02:00
|
|
|
// Copyright 2016 The Go Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package go;
|
|
|
|
|
|
|
|
import android.test.InstrumentationTestCase;
|
|
|
|
|
2016-08-20 21:10:46 +02:00
|
|
|
import org.golang.custompkg.testpkg.Testpkg;
|
2016-07-07 17:27:58 +02:00
|
|
|
|
|
|
|
public class CustomPkgTest extends InstrumentationTestCase {
|
|
|
|
public void testHi() {
|
2016-09-04 23:37:26 +03:00
|
|
|
Testpkg.hi();
|
2016-07-07 17:27:58 +02:00
|
|
|
}
|
|
|
|
}
|