Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for TestHasTestFiles (0.13 sec)

  1. cmd/import-boss/main_test.go

    		t.Run(c.name, func(t *testing.T) {
    			out := transitiveClosure(c.in)
    			if !reflect.DeepEqual(c.expected, out) {
    				t.Errorf("expected: %#v, got %#v", c.expected, out)
    			}
    		})
    	}
    }
    
    func TestHasTestFiles(t *testing.T) {
    	cases := []struct {
    		input  []string
    		expect bool
    	}{{
    		input:  nil,
    		expect: false,
    	}, {
    		input:  []string{},
    		expect: false,
    	}, {
    		input:  []string{"foo.go"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 12:36:49 UTC 2024
    - 8.8K bytes
    - Viewed (0)
Back to top