Files
tgex-backend/shared/echotron/apierror_test.go
2026-02-19 11:13:45 +03:00

18 lines
210 B
Go

package echotron
import "testing"
var a APIError
func TestErrorCode(_ *testing.T) {
a.ErrorCode()
}
func TestDescription(_ *testing.T) {
a.Description()
}
func TestError(_ *testing.T) {
_ = a.Error()
}