Path sets the golden file path (fluent API)
(path string)
| 82 | |
| 83 | // Path sets the golden file path (fluent API) |
| 84 | func (g *GoldenFile) Path(path string) *GoldenFile { |
| 85 | g.path = path |
| 86 | return g |
| 87 | } |
| 88 | |
| 89 | // CompareContent performs the golden file comparison |
| 90 | func (g *GoldenFile) CompareContent() { |
no outgoing calls