tldr/pages.tr/common/go-test.md

29 lines
695 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

# go test
> Go paketlerini test et (dosyalar `_test.go` ifadesiyle bitmeli).
> Daha fazla bilgi için: <https://golang.org/cmd/go/#hdr-Testing_flags>.
- Mevcut dizinde bulunan paketleri test et:
`go test`
- Mevcut dizindeki paketleri ayrıntılı şekilde test et:
`go test -v`
- Mevcut dizindeki ve tüm alt dizinlerdeki paketleri test et (`...` ifadesine dikkat):
`go test -v ./...`
- Mevcut dzindeki paketleri test et ve tüm kalite testlerini çalıştır:
`go test -v -bench .`
- Mevcut dizindeki paketleri test et ve 50 saniye içinde tüm kalite testlerini çalıştır:
`go test -v -bench . -benchtime {{50s}}`
- Paketleri kapsamlı bir analiz ile test et:
`go test -cover`