// Code generated by convertFourslash; DO NOT EDIT. // To modify this test, run "npm run makemanual codeFixClassImplementInterface_quotePreferenceAuto2" 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_quotePreferenceAuto2(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")}, }) }