Esempio n. 1
0
		public void StartNewLeg_AfterLegFinished()
		{
			var match = new Match("1", new[] { "p1", "p2" }, 20, 2);
			match.AddThrow(ThrowResult.Double(10));
			match.AddThrow(ThrowResult.Double(10));
			Assert.AreEqual(2, match.Legs.Count);
			Assert.IsTrue(match.CurrentLeg.Finished);
		}
Esempio n. 2
0
		public void BeSerializable()
		{
			var match = new Match("1", new[] { "p1", "p2" }, 20, 2);
			match.AddThrow(ThrowResult.Double(10));
			match.AddThrow(ThrowResult.Double(10));

			var text = JsonConvert.SerializeObject(match, Formatting.Indented, new ThrowJsonConverter());
			Console.WriteLine(text);
			var deserializedMatch = JsonConvert.DeserializeObject<Match>(text, new ThrowJsonConverter());
			var text2 = JsonConvert.SerializeObject(deserializedMatch, Formatting.Indented, new ThrowJsonConverter());
			Console.WriteLine(text2);
			Assert.AreEqual(text, text2);
		}
Esempio n. 3
0
		public void ChangePlayer_AfterTurnFinished()
		{
			var match = new Match("1", new[] { "p1", "p2" }, 301, 2);
			match.AddThrow(ThrowResult.Single(1));
			match.AddThrow(ThrowResult.Single(2));
			match.AddThrow(ThrowResult.Single(3));
			// Player 1 turn is finished

			match.AddThrow(ThrowResult.Single(4));

			Assert.AreEqual(1, match.CurrentLeg.GetPlayerTurns(0).Count);
			Assert.AreEqual(1, match.CurrentLeg.GetPlayerTurns(1).Count);
		}
Esempio n. 4
0
		private void EnterMatch(Match match)
		{
			while (!match.Finished)
			{
				ShowCurrentLegDetails(match);
				var throwResult = ui.Prompt("Enter next throw result", ThrowResult.IsValid, ThrowResult.Parse, "");
				match.AddThrow(throwResult);
			}
			Console.WriteLine("Match is finished! Player {0} wins!", match.Winner);
			MatchSummaryView.Show(match);
			Console.WriteLine();
		}