Use Raw String Literals to Avoid Escaping

Go supports raw string literals,which can span multiple lines and include quotes. Use these to avoidhand-escaped strings which are much harder to read.

BadGood
  1. wantError := "unknown name:\"test\""
  1. wantError := unknown error:"test"