package fortest import "testing" func TestAdd(t *testing.T) { type args struct { x int y int } tests := []struct { name string args args want int }{ // TODO: Add test cases. } for _, tt := range tests { t.Run(tt.name, func(t *testing.T) { if got := Add(tt.args.x, tt.args.y); got != tt.want { t.Errorf("Add() = %v, want %v", got, tt.want) } }) } }