General Notes about Go

General Notes about Go

Testing

  • run your test in parallel

    func TestMyFunction (t *testing.T) {
      t.Parallel()
    ...
    }