Home / Function/ TestPathCleanMallocs() — gin Function Reference

TestPathCleanMallocs() — gin Function Reference

Architecture documentation for the TestPathCleanMallocs() function in path_test.go from the gin codebase.

Entity Profile

Relationship Graph

Source Code

path_test.go lines 79–92

func TestPathCleanMallocs(t *testing.T) {
	if testing.Short() {
		t.Skip("skipping malloc count in short mode")
	}

	if runtime.GOMAXPROCS(0) > 1 {
		t.Skip("skipping malloc count; GOMAXPROCS>1")
	}

	for _, test := range cleanTests {
		allocs := testing.AllocsPerRun(100, func() { cleanPath(test.result) })
		assert.InDelta(t, 0, allocs, 0.01)
	}
}

Domain

Subdomains

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free