Files
kjol/tools/tsgo/internal/fourslash/tests/gen/classInterfaceInsert_test.go
2026-07-09 16:50:43 -04:00

32 lines
897 B
Go

// Code generated by convertFourslash; DO NOT EDIT.
// To modify this test, run "npm run makemanual classInterfaceInsert"
package fourslash_test
import (
"testing"
"github.com/microsoft/typescript-go/internal/fourslash"
"github.com/microsoft/typescript-go/internal/testutil"
)
func TestClassInterfaceInsert(t *testing.T) {
fourslash.SkipIfFailing(t)
t.Parallel()
defer testutil.RecoverAndFail(t, "Panic on fourslash test")
const content = `interface Intersection {
dist: number;
}
/*interfaceGoesHere*/
class /*className*/Sphere {
constructor(private center) {
}
}`
f, done := fourslash.NewFourslash(t, nil /*capabilities*/, content)
defer done()
f.VerifyQuickInfoAt(t, "className", "class Sphere", "")
f.GoToMarker(t, "interfaceGoesHere")
f.Insert(t, "\ninterface Surface {\n reflect: () => number;\n}\n")
f.VerifyQuickInfoAt(t, "className", "class Sphere", "")
}