(t *testing.T)
| 1545 | } |
| 1546 | |
| 1547 | func TestSyncWithMaxDuration(t *testing.T) { |
| 1548 | t.Run("Hard", func(t *testing.T) { |
| 1549 | testSyncWithMaxDuration(t, fs.CutoffModeHard) |
| 1550 | }) |
| 1551 | t.Run("Soft", func(t *testing.T) { |
| 1552 | testSyncWithMaxDuration(t, fs.CutoffModeSoft) |
| 1553 | }) |
| 1554 | } |
| 1555 | |
| 1556 | // Test with TrackRenames set |
| 1557 | func TestSyncWithTrackRenames(t *testing.T) { |
nothing calls this directly
no test coverage detected
searching dependent graphs…