| 1925 | } |
| 1926 | |
| 1927 | void AssertAfterMove(const std::string& src, const std::string& dest, FileType type) { |
| 1928 | if (internal::RemoveTrailingSlash(src) != internal::RemoveTrailingSlash(dest)) { |
| 1929 | AssertFileInfo(fs(), src, FileType::NotFound); |
| 1930 | } |
| 1931 | AssertFileInfo(fs(), dest, type); |
| 1932 | } |
| 1933 | |
| 1934 | std::optional<StringMatcher> MoveErrorMessageMatcher(const FileInfo& src_info, |
| 1935 | const std::string& src, |
nothing calls this directly
no test coverage detected