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

49 lines
1.3 KiB
Go

// Code generated by convertFourslash; DO NOT EDIT.
// To modify this test, run "npm run makemanual codeFixClassImplementInterface_quotePreferenceAuto1"
package fourslash_test
import (
"testing"
"github.com/microsoft/typescript-go/internal/fourslash"
"github.com/microsoft/typescript-go/internal/ls/lsutil"
"github.com/microsoft/typescript-go/internal/testutil"
)
func TestCodeFixClassImplementInterface_quotePreferenceAuto1(t *testing.T) {
fourslash.SkipIfFailing(t)
t.Parallel()
defer testutil.RecoverAndFail(t, "Panic on fourslash test")
const content = `// @filename: a.ts
export interface I {
a(): void;
b(x: "x", y: "a" | "b"): "b";
c: "c";
d: { e: "e"; };
}
// @filename: b.ts
import { I } from "./a";
class Foo implements I {}`
f, done := fourslash.NewFourslash(t, nil /*capabilities*/, content)
defer done()
f.GoToFile(t, "b.ts")
f.VerifyCodeFix(t, fourslash.VerifyCodeFixOptions{
Description: "Implement interface 'I'",
NewFileContent: `import { I } from "./a";
class Foo implements I {
a(): void {
throw new Error("Method not implemented.");
}
b(x: "x", y: "a" | "b"): "b" {
throw new Error("Method not implemented.");
}
c: "c";
d: { e: "e"; };
}`,
Index: 0,
UserPreferences: &lsutil.UserPreferences{QuotePreference: lsutil.QuotePreference("auto")},
})
}