test(impl): add all possible cases

This commit is contained in:
Oleksandr Smirnov 2025-02-17 20:27:18 +02:00
parent 1203550399
commit 498072b5dc
No known key found for this signature in database
10 changed files with 65 additions and 16 deletions

8
spec/fixtures/impl/closer_output.go vendored Normal file
View file

@ -0,0 +1,8 @@
package main
type CloserTest2 struct{}
func (closertest *CloserTest2) Close() error {
panic("not implemented") // TODO: Implement
}