ApprovalTests.Reporters.IntroductionReporter.Report C# (CSharp) Method

Report() public method

public Report ( string approved, string received ) : void
approved string
received string
return void
		public void Report(string approved, string received)
		{
			var message = GetFriendlyWelcomeMessage();
			Debug.WriteLine(message);
			Console.WriteLine(message);
            throw new Exception(message);
		}