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

40 lines
1003 B
Go

// Code generated by convertFourslash; DO NOT EDIT.
// To modify this test, run "npm run makemanual codeFixClassImplementInterfaceObjectLiteral"
package fourslash_test
import (
"testing"
"github.com/microsoft/typescript-go/internal/fourslash"
"github.com/microsoft/typescript-go/internal/testutil"
)
func TestCodeFixClassImplementInterfaceObjectLiteral(t *testing.T) {
fourslash.SkipIfFailing(t)
t.Parallel()
defer testutil.RecoverAndFail(t, "Panic on fourslash test")
const content = `interface IPerson {
coordinate: {
x: number;
y: number;
}
}
class Person implements IPerson { }`
f, done := fourslash.NewFourslash(t, nil /*capabilities*/, content)
defer done()
f.VerifyCodeFix(t, fourslash.VerifyCodeFixOptions{
Description: "Implement interface 'IPerson'",
NewFileContent: `interface IPerson {
coordinate: {
x: number;
y: number;
}
}
class Person implements IPerson {
coordinate: { x: number; y: number; };
}`,
Index: 0,
})
}