Content sets the content to compare (fluent API)
(content []byte)
| 71 | |
| 72 | // Content sets the content to compare (fluent API) |
| 73 | func (g *GoldenFile) Content(content []byte) *GoldenFile { |
| 74 | g.content = content |
| 75 | return g |
| 76 | } |
| 77 | |
| 78 | // StringContent sets string content to compare (fluent API) |
| 79 | func (g *GoldenFile) StringContent(content string) *GoldenFile { |
no outgoing calls
no test coverage detected