add test placeholder

This commit is contained in:
lyx0 2021-11-06 21:30:27 +01:00
parent d847286469
commit 2a9f8675c1

View file

@ -0,0 +1,18 @@
package personal
import "testing"
func TestCommands(t *testing.T) {
t.Run("personal package test placeholder", func(t *testing.T) {
request := 1
response := 1
got := request
want := response
if got != want {
t.Errorf("got %q, want %q", got, want)
}
})
}