Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for testHtmlUnformatted (0.13 sec)

  1. src/cmd/cover/cover_test.go

    	testenv.MustHaveExec(t)
    
    	toolexecArg := "-toolexec=" + testcover(t)
    
    	t.Run("CoverHTML", func(t *testing.T) {
    		testCoverHTML(t, toolexecArg)
    	})
    	t.Run("HtmlUnformatted", func(t *testing.T) {
    		testHtmlUnformatted(t, toolexecArg)
    	})
    	t.Run("FuncWithDuplicateLines", func(t *testing.T) {
    		testFuncWithDuplicateLines(t, toolexecArg)
    	})
    	t.Run("MissingTrailingNewlineIssue58370", func(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 07 16:54:28 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  2. src/cmd/cover/cover.go

    // It is possible for positions to repeat when there is a line
    // directive that does not specify column information and the input
    // has not been passed through gofmt.
    // See issues #27530 and #30746.
    // Tests are TestHtmlUnformatted and TestLineDup.
    // We use a map to avoid duplicates.
    
    // pos2 is a pair of token.Position values, used as a map key type.
    type pos2 struct {
    	p1, p2 token.Position
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 34.5K bytes
    - Viewed (0)
Back to top