Golangのテストはバイナリサイズに影響するか?
MyMathというパッケージがあり、
以下のようなテストがsum_test.go
に書かれているとします。
package MyMath
import (
"testing"
)
func TestSum(t *testing.T) {
actual := Sum(10, 20)
expected := 30
if actual != expected {
t.Errorf("got %v\nwant %v", actual, expected)
}
}
このTestSum関数はimportした側のバイナリサイズに影響するでしょうか?
もし影響するならばバイナリサイズへの影響を避ける手段はありますか?