Compare commits

..

3 Commits

Author SHA1 Message Date
nerv da0c4b6544 Merge pull request 'Go file' (#1) from feature1 into main
Reviewed-on: #1
2026-04-24 13:41:04 +03:00
ub3 d6af2e1e54 Add comment 2026-04-24 13:31:07 +03:00
ub3 6d9a190e12 Go file 2026-04-24 13:30:30 +03:00
+13
View File
@@ -0,0 +1,13 @@
package mypkg
import "testing"
func TestAddition(t *testing.T) {
got := Add(1, 1)
want := 2
if got != want {
t.Errorf("Add(1, 1) = %d; want %d", got, want)
}
}
#тестовый файл