GitChangesResult.noGitRepo constructor

GitChangesResult.noGitRepo()

Implementation

factory GitChangesResult.noGitRepo() => GitChangesResult(
      changedFiles: const [],
      modified: const [],
      added: const [],
      deleted: const [],
      isGitRepository: false,
      requiresFallback: true,
      fallbackReason: 'no_git_repository',
      warningMessage:
          '\u26a0 Git repository not detected.\n'
          'Falling back to full test suite to ensure safety.',
    );