StringContent sets string content to compare (fluent API)
(content string)
| 77 | |
| 78 | // StringContent sets string content to compare (fluent API) |
| 79 | func (g *GoldenFile) StringContent(content string) *GoldenFile { |
| 80 | return g.Content([]byte(content)) |
| 81 | } |
| 82 | |
| 83 | // Path sets the golden file path (fluent API) |
| 84 | func (g *GoldenFile) Path(path string) *GoldenFile { |