예제 #1
0
 public void Reset_with_Hard_should_issue_correct_command_and_parse_response(string file, string args)
 {
     using (_executable.StageCommand(args))
     {
         _gitModule.Reset(ResetMode.Hard, file);
     }
 }
예제 #2
0
 public void ResetHard_calls_correct_command_and_parses_response(string commit, string file, string args)
 {
     using (_executable.StageCommand(args))
     {
         _gitModule.ResetHard(commit, file);
     }
 }