Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for TestUsingB (0.2 sec)

  1. src/cmd/go/testdata/script/mod_lazy_test_of_test_dep.txt

    module example.com/a
    
    go 1.15
    
    require example.com/b v0.1.0
    -- a/a.go --
    package a
    -- a/a_test.go --
    package a
    
    import (
    	"testing"
    
    	_ "example.com/b"
    )
    
    func TestUsingB(t *testing.T) {
    	// …
    }
    -- b1/go.mod --
    module example.com/b
    
    go 1.15
    
    require example.com/c v0.1.0
    -- b1/b.go --
    package b
    -- b1/b_test.go --
    package b
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 08 19:32:28 UTC 2021
    - 5.2K bytes
    - Viewed (0)
Back to top