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

26 lines
758 B
Go

// Code generated by convertFourslash; DO NOT EDIT.
// To modify this test, run "npm run makemanual failureToImplementClass"
package fourslash_test
import (
"testing"
"github.com/microsoft/typescript-go/internal/fourslash"
"github.com/microsoft/typescript-go/internal/testutil"
)
func TestFailureToImplementClass(t *testing.T) {
fourslash.SkipIfFailing(t)
t.Parallel()
defer testutil.RecoverAndFail(t, "Panic on fourslash test")
const content = `interface IExec {
exec: (filename: string, cmdLine: string) => boolean;
}
class /*1*/NodeExec/*2*/ implements IExec { }`
f, done := fourslash.NewFourslash(t, nil /*capabilities*/, content)
defer done()
f.VerifyErrorExistsBetweenMarkers(t, "1", "2")
f.VerifyNumberOfErrorsInCurrentFile(t, 1)
}