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

49 lines
1.2 KiB
Go

// Code generated by convertFourslash; DO NOT EDIT.
// To modify this test, run "npm run makemanual codeFixClassImplementInterfaceComputedPropertyLiterals"
package fourslash_test
import (
"testing"
"github.com/microsoft/typescript-go/internal/fourslash"
"github.com/microsoft/typescript-go/internal/testutil"
)
func TestCodeFixClassImplementInterfaceComputedPropertyLiterals(t *testing.T) {
fourslash.SkipIfFailing(t)
t.Parallel()
defer testutil.RecoverAndFail(t, "Panic on fourslash test")
const content = `interface I {
["foo"](o: any): boolean;
["x"]: boolean;
[1](): string;
[2]: boolean;
}
class C implements I {}`
f, done := fourslash.NewFourslash(t, nil /*capabilities*/, content)
defer done()
f.VerifyCodeFix(t, fourslash.VerifyCodeFixOptions{
Description: "Implement interface 'I'",
NewFileContent: `interface I {
["foo"](o: any): boolean;
["x"]: boolean;
[1](): string;
[2]: boolean;
}
class C implements I {
["foo"](o: any): boolean {
throw new Error("Method not implemented.");
}
["x"]: boolean;
[1](): string {
throw new Error("Method not implemented.");
}
[2]: boolean;
}`,
Index: 0,
})
}