package command_test import ( "testing" "go-mod.ewintr.nl/planner/plan/command" ) func TestCommand(t *testing.T) { t.Parallel() for _, tc := range []struct { name string args string exp *command.Command }{ { name: "default", }, } { t.Run(tc.name, func(t *testing.T) { }) } }