GetLaunchArguments() public method

public GetLaunchArguments ( string approved, string received ) : ApprovalTests.Reporters.LaunchArgs
approved string
received string
return ApprovalTests.Reporters.LaunchArgs
		private static void AssertLauncher(string approved, string received, GenericDiffReporter reporter)
		{
			using (ApprovalResults.UniqueForMachineName())
			{
				var args = reporter.GetLaunchArguments(approved, received);
				Approvals.VerifyWithCallback(args, s => StartProcess(s));
			}
		}
		private static void AssertLauncher(string approved, string received, GenericDiffReporter reporter)
		{
			var args = reporter.GetLaunchArguments(approved, received);

			Approvals.VerifyWithCallback(args, s => StartProcess(s));
		}