(testCases testCaseList)
| 520 | } |
| 521 | |
| 522 | func makeDeepTestCases(testCases testCaseList) testCaseList { |
| 523 | for _, f := range testCases { |
| 524 | if f.path == "testFolder" { |
| 525 | continue |
| 526 | } |
| 527 | |
| 528 | deepEquivalent := checkedFileOrFolder{ |
| 529 | path: filepath.Join("testFolder", f.path), |
| 530 | shouldExistInLocal: f.shouldExistInLocal, |
| 531 | shouldExistInRemote: f.shouldExistInRemote, |
| 532 | editLocation: f.editLocation, |
| 533 | } |
| 534 | testCases = append(testCases, deepEquivalent) |
| 535 | } |
| 536 | |
| 537 | return testCases |
| 538 | } |
| 539 | |
| 540 | func makeSymLinkTestCases(testCases testCaseList) testCaseList { |
| 541 | for _, f := range testCases { |
no outgoing calls
no test coverage detected