func TestAddParseTreeHTML(t *testing.T) { … } func TestClone(t *testing.T) { … } func TestTemplates(t *testing.T) { … } // This used to crash; https://golang.org/issue/3281 func TestCloneCrash(t *testing.T) { … } // Ensure that this guarantee from the docs is upheld: // "Further calls to Parse in the copy will add templates // to the copy but not to the original." func TestCloneThenParse(t *testing.T) { … } // https://golang.org/issue/5980 func TestFuncMapWorksAfterClone(t *testing.T) { … } // https://golang.org/issue/16101 func TestTemplateCloneExecuteRace(t *testing.T) { … } func TestTemplateCloneLookup(t *testing.T) { … } func TestCloneGrowth(t *testing.T) { … } // https://golang.org/issue/17735 func TestCloneRedefinedName(t *testing.T) { … } // Issue 24791. func TestClonePipe(t *testing.T) { … }