(t *testing.T)
| 24 | } |
| 25 | |
| 26 | func TestProcessString(t *testing.T) { |
| 27 | for _, tt := range processStringTests { |
| 28 | actual := tt.p.String() |
| 29 | if actual != tt.expected { |
| 30 | t.Errorf("Process(%#v): expected %s, actual %s", tt.p, tt.expected, actual) |
| 31 | } |
| 32 | } |
| 33 | } |