Run runs the diff program against both directories.
(diff *DiffProgram)
| 610 | |
| 611 | // Run runs the diff program against both directories. |
| 612 | func (d *Differ) Run(diff *DiffProgram) error { |
| 613 | return diff.Run(d.From.Dir.Name, d.To.Dir.Name) |
| 614 | } |
| 615 | |
| 616 | // TearDown removes both temporary directories recursively. |
| 617 | func (d *Differ) TearDown() { |
no outgoing calls