/prebuilts/go/darwin-x86/src/testing/ |
testing_test.go | 12 // This is exactly what a test would do without a TestMain. 14 // standard library with a TestMain, so that code is executed. 16 func TestMain(m *testing.M) {
|
testing.go | 128 // func TestMain(m *testing.M) 130 // then the generated test will call TestMain(m) instead of running the tests 131 // directly. TestMain runs in the main goroutine and can do whatever setup 133 // os.Exit with the result of m.Run. When TestMain is called, flag.Parse has 134 // not been run. If TestMain depends on command-line flags, including those 137 // A simple implementation of TestMain is: 139 // func TestMain(m *testing.M) { 466 // M is a type passed to a TestMain function to run the actual tests.
|
/prebuilts/go/linux-x86/src/testing/ |
testing_test.go | 12 // This is exactly what a test would do without a TestMain. 14 // standard library with a TestMain, so that code is executed. 16 func TestMain(m *testing.M) {
|
testing.go | 128 // func TestMain(m *testing.M) 130 // then the generated test will call TestMain(m) instead of running the tests 131 // directly. TestMain runs in the main goroutine and can do whatever setup 133 // os.Exit with the result of m.Run. When TestMain is called, flag.Parse has 134 // not been run. If TestMain depends on command-line flags, including those 137 // A simple implementation of TestMain is: 139 // func TestMain(m *testing.M) { 466 // M is a type passed to a TestMain function to run the actual tests.
|
/art/test/422-instanceof/src/ |
Main.java | 41 $opt$TestMain(); 45 public static void $opt$TestMain() {
|
/art/test/424-checkcast/src/ |
Main.java | 29 $opt$TestMain(); 33 public static void $opt$TestMain() {
|
/prebuilts/go/darwin-x86/src/net/internal/socktest/ |
main_test.go | 19 func TestMain(m *testing.M) {
|
/prebuilts/go/linux-x86/src/net/internal/socktest/ |
main_test.go | 19 func TestMain(m *testing.M) {
|
/prebuilts/go/darwin-x86/src/net/http/ |
main_test.go | 18 func TestMain(m *testing.M) {
|
/prebuilts/go/linux-x86/src/net/http/ |
main_test.go | 18 func TestMain(m *testing.M) {
|
/prebuilts/go/darwin-x86/src/syscall/ |
syscall_linux_test.go | 21 func TestMain(m *testing.M) {
|
/prebuilts/go/linux-x86/src/syscall/ |
syscall_linux_test.go | 21 func TestMain(m *testing.M) {
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/ |
TestBoilerplate.java | 38 public final void TestMain() throws Exception {
|
/external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/test/ |
TestBoilerplate.java | 37 public final void TestMain() throws Exception {
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/tests/ |
test_main.py | 20 class TestMain(unittest.TestCase):
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/tests/ |
test_main.py | 20 class TestMain(unittest.TestCase):
|
/prebuilts/go/darwin-x86/misc/cgo/testshared/ |
shared_test.go | 44 // goCmd invokes the go tool with the installsuffix set up by TestMain. It calls 72 // TestMain calls testMain so that the latter can use defer (TestMain exits with os.Exit). 73 func testMain(m *testing.M) (int, error) { 145 func TestMain(m *testing.M) { 151 exitCode, err := testMain(m)
|
/prebuilts/go/darwin-x86/src/net/ |
main_test.go | 46 func TestMain(m *testing.M) {
|
/prebuilts/go/linux-x86/misc/cgo/testshared/ |
shared_test.go | 44 // goCmd invokes the go tool with the installsuffix set up by TestMain. It calls 72 // TestMain calls testMain so that the latter can use defer (TestMain exits with os.Exit). 73 func testMain(m *testing.M) (int, error) { 145 func TestMain(m *testing.M) { 151 exitCode, err := testMain(m)
|
/prebuilts/go/linux-x86/src/net/ |
main_test.go | 46 func TestMain(m *testing.M) {
|
/prebuilts/go/darwin-x86/src/cmd/go/ |
test.go | 319 // Dependencies for testmain. 738 ImportPath: "testmain", 748 stk.push("testmain") [all...] |
go_test.go | 60 // The TestMain function creates a go command for testing purposes and 62 func TestMain(m *testing.M) { [all...] |
/prebuilts/go/linux-x86/src/cmd/go/ |
test.go | 319 // Dependencies for testmain. 738 ImportPath: "testmain", 748 stk.push("testmain") [all...] |
go_test.go | 60 // The TestMain function creates a go command for testing purposes and 62 func TestMain(m *testing.M) { [all...] |
/external/chromium-trace/catapult/third_party/typ/typ/tests/ |
main_test.py | 663 class TestMain(TestCli):
|