Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for htmlOutput (0.07 sec)

  1. src/cmd/cover/html.go

    	"io"
    	"math"
    	"os"
    	"path/filepath"
    	"strings"
    
    	"golang.org/x/tools/cover"
    )
    
    // htmlOutput reads the profile data from profile and generates an HTML
    // coverage report, writing it to outfile. If outfile is empty,
    // it writes the report to a temporary file and opens it in a web browser.
    func htmlOutput(profile, outfile string) error {
    	profiles, err := cover.ParseProfiles(profile)
    	if err != nil {
    		return err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 08 14:33:36 UTC 2022
    - 6.8K bytes
    - Viewed (0)
  2. src/cmd/cover/cover.go

    	}
    
    	// Generate coverage-annotated source.
    	if *mode != "" {
    		annotate(flag.Args())
    		return
    	}
    
    	// Output HTML or function coverage information.
    	if *htmlOut != "" {
    		err = htmlOutput(profile, *output)
    	} else {
    		err = funcOutput(profile, *output)
    	}
    
    	if err != nil {
    		fmt.Fprintf(os.Stderr, "cover: %v\n", err)
    		os.Exit(2)
    	}
    }
    
    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