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/writer_output.go vendored Normal file
View file

@ -0,0 +1,8 @@
package main
type WriterTest2 struct{}
func (w *WriterTest2) Write(p []byte) (n int, err error) {
panic("not implemented") // TODO: Implement
}