36 lines
911 B
Go
36 lines
911 B
Go
// Code generated by convertFourslash; DO NOT EDIT.
|
|
// To modify this test, run "npm run makemanual codeFixClassImplementInterfaceIndexSignaturesString"
|
|
|
|
package fourslash_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/microsoft/typescript-go/internal/fourslash"
|
|
"github.com/microsoft/typescript-go/internal/testutil"
|
|
)
|
|
|
|
func TestCodeFixClassImplementInterfaceIndexSignaturesString(t *testing.T) {
|
|
fourslash.SkipIfFailing(t)
|
|
t.Parallel()
|
|
defer testutil.RecoverAndFail(t, "Panic on fourslash test")
|
|
const content = `interface I<X> {
|
|
[Ƚ: string]: X;
|
|
}
|
|
|
|
class C implements I<number> {}`
|
|
f, done := fourslash.NewFourslash(t, nil /*capabilities*/, content)
|
|
defer done()
|
|
f.VerifyCodeFix(t, fourslash.VerifyCodeFixOptions{
|
|
Description: "Implement interface 'I<number>'",
|
|
NewFileContent: `interface I<X> {
|
|
[Ƚ: string]: X;
|
|
}
|
|
|
|
class C implements I<number> {
|
|
[Ƚ: string]: number;
|
|
}`,
|
|
Index: 0,
|
|
})
|
|
}
|