maku693 / gotests-templates

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

gotests-templates

custom templates for gotests

  • using go-cmp

  • custom error message

    default:

      t.Errorf("`StructName`.`MethodName` = %v, want %v", got, tt.want)
    

    custom:

      t.Errorf("`StructName`.`MethodName` got: %#v, want: %#v", got, tt.want)
    

Usage in Visual Studio Code

  1. Add [vscode-go] extension
  2. Clone this repository
  3. Add config to setting.json
"go.generateTestsFlags": [
  "-template_dir",
  "/your_local_directory/gotests-templates/templates"
]

About